From 10f4629f85f1caae6583dc69159740ab26fdf78c Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Thu, 27 Jan 2022 14:50:48 +0100 Subject: drivers: dio: Use instead MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch fixes the checkpatch.pl warning: < WARNING: Use #include instead of < #36: FILE: drivers/dio/dio.c:36: < +#include /* readb() */ Signed-off-by: Aleksa Vučković Link: https://lore.kernel.org/r/20220127135054.27281-1-aleksav013@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/dio/dio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/dio') diff --git a/drivers/dio/dio.c b/drivers/dio/dio.c index 4c06c93c93d3..831f36ab6e2b 100644 --- a/drivers/dio/dio.c +++ b/drivers/dio/dio.c @@ -33,7 +33,7 @@ #include #include /* kmalloc() */ #include -#include /* readb() */ +#include /* readb() */ struct dio_bus dio_bus = { .resources = { -- cgit