From 271dead302d3af20bdb917bffdb8d318e60c23d7 Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Tue, 7 Jul 2020 13:47:13 +1000 Subject: [PATCH] hwrng: ba431 - Include kernel.h There are multiple things in this file that requires kernel.h but it's only included through other header files indirectly. This patch adds a direct inclusion as those indirect inclusions may go away at any point. Signed-off-by: Herbert Xu --- drivers/char/hw_random/ba431-rng.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/char/hw_random/ba431-rng.c b/drivers/char/hw_random/ba431-rng.c index a39e3abf50b9..410b50b05e21 100644 --- a/drivers/char/hw_random/ba431-rng.c +++ b/drivers/char/hw_random/ba431-rng.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include #include -- 2.25.1