diff options
author | Soumyajit Deb <debsoumyajit100@gmail.com> | 2020-03-25 20:13:53 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-25 19:35:27 +0100 |
commit | 6d7e48d01612bd7d83322452a0d3d6f7f095df46 (patch) | |
tree | c38373ab59a9d11b44061f16c64c43bedbe4ce51 /drivers/staging | |
parent | c42a4ac49abc888691273e207ed4d3257072d4bb (diff) | |
download | lwn-6d7e48d01612bd7d83322452a0d3d6f7f095df46.tar.gz lwn-6d7e48d01612bd7d83322452a0d3d6f7f095df46.zip |
staging: hp100: Add space around operator
Add space around "-" operator to improve code readability and 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/20200325144353.42655-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 5402ff195fe9..5f04ad21cb22 100644 --- a/drivers/staging/hp/hp100.c +++ b/drivers/staging/hp/hp100.c @@ -2930,7 +2930,7 @@ MODULE_DESCRIPTION("HP CASCADE Architecture Driver for 100VG-AnyLan Network Adap #if defined(MODULE) && defined(CONFIG_ISA) #define HP100_DEVICES 5 /* Parameters set by insmod */ -static int hp100_port[HP100_DEVICES] = { 0, [1 ... (HP100_DEVICES-1)] = -1 }; +static int hp100_port[HP100_DEVICES] = { 0, [1 ... (HP100_DEVICES - 1)] = -1 }; module_param_hw_array(hp100_port, int, ioport, NULL, 0); /* List of devices */ |