staging: hp100: Add space between while keyword and open parenthesis

Add space between while keyword and open parenthesis "(" in the do while
statement to improve code readability and to adhere to the Linux Kernel
coding style.
Reported by checkpatch.pl

Signed-off-by: Soumyajit Deb <debsoumyajit100@gmail.com>
Link: https://lore.kernel.org/r/20200325115956.37126-1-debsoumyajit100@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Soumyajit Deb 2020-03-25 17:29:56 +05:30 committed by Greg Kroah-Hartman
parent f649dc7169
commit 096821d654
1 changed files with 1 additions and 1 deletions

View File

@ -2977,7 +2977,7 @@ static void hp100_isa_cleanup(void)
} }
#else #else
#define hp100_isa_init() (0) #define hp100_isa_init() (0)
#define hp100_isa_cleanup() do { } while(0) #define hp100_isa_cleanup() do { } while (0)
#endif #endif
static int __init hp100_module_init(void) static int __init hp100_module_init(void)