mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
e7b4816971
Add missing header include to get rid of arch/s390/crypto/arch_random.c:15:1: warning: symbol 's390_arch_random_available' was not declared. Should it be static? arch/s390/crypto/arch_random.c:17:12: warning: symbol 's390_arch_random_counter' was not declared. Should it be static? Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
20 lines
463 B
C
20 lines
463 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* s390 arch random implementation.
|
|
*
|
|
* Copyright IBM Corp. 2017, 2020
|
|
* Author(s): Harald Freudenberger
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/atomic.h>
|
|
#include <linux/random.h>
|
|
#include <linux/static_key.h>
|
|
#include <asm/archrandom.h>
|
|
#include <asm/cpacf.h>
|
|
|
|
DEFINE_STATIC_KEY_FALSE(s390_arch_random_available);
|
|
|
|
atomic64_t s390_arch_random_counter = ATOMIC64_INIT(0);
|
|
EXPORT_SYMBOL(s390_arch_random_counter);
|