mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-30 21:52:21 +00:00

Explicitly include <linux/export.h> in files which contain an
EXPORT_SYMBOL().
See commit a934a57a42
("scripts/misc-check: check missing #include
<linux/export.h> when W=1") for more details.
Acked-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
21 lines
489 B
C
21 lines
489 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* s390 arch random implementation.
|
|
*
|
|
* Copyright IBM Corp. 2017, 2020
|
|
* Author(s): Harald Freudenberger
|
|
*/
|
|
|
|
#include <linux/export.h>
|
|
#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);
|