diff options
author | Soumyajit Deb <debsoumyajit100@gmail.com> | 2020-03-25 17:29:56 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-25 13:42:24 +0100 |
commit | 096821d65488410ea3cbfb712c943678362aa336 (patch) | |
tree | 1f094f37fdac8cf0e8b8855979d144faede3d63b /drivers/staging | |
parent | f649dc7169918e894f9bd1d9a270e32daf4cb9d9 (diff) |
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/hp/hp100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/hp/hp100.c b/drivers/staging/hp/hp100.c index 9d100641167d..c38a200a7e7a 100644 --- a/drivers/staging/hp/hp100.c +++ b/drivers/staging/hp/hp100.c @@ -2977,7 +2977,7 @@ static void hp100_isa_cleanup(void) } #else #define hp100_isa_init() (0) -#define hp100_isa_cleanup() do { } while(0) +#define hp100_isa_cleanup() do { } while (0) #endif static int __init hp100_module_init(void) |