Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers: dio: Missing a blank line after declarations

This patch fixes the checkpatch.pl error:

< WARNING: Missing a blank line after declarations
< #97: FILE: drivers/dio/dio.c:97:
< + unsigned int i;
< + for (i = 0; i < ARRAY_SIZE(names); i++)

Signed-off-by: Aleksa Vučković <aleksav013@gmail.com>
Link: https://lore.kernel.org/r/20220127135054.27281-7-aleksav013@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Aleksa Vučković and committed by
Greg Kroah-Hartman
aafce7bc dffae938

+1
+1
drivers/dio/dio.c
··· 94 94 { 95 95 /* return pointer to a constant string describing the board with given ID */ 96 96 unsigned int i; 97 + 97 98 for (i = 0; i < ARRAY_SIZE(names); i++) 98 99 if (names[i].id == id) 99 100 return names[i].name;