Commit 9ac43e47 authored by Andrew Morton's avatar Andrew Morton Committed by james toy

ERROR: space required after that ',' (ctx:VxV)

#17: FILE: drivers/spi/spidev.c:57:
+static DECLARE_BITMAP(minors,N_SPI_MINORS);
                             ^

total: 1 errors, 0 warnings, 8 lines checked

./patches/spidev-use-declare_bitmap-instead-of-declaring-the-array.patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: David Brownell <dbrownell@users.sourceforge.net>
Cc: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 9618f33f
......@@ -54,7 +54,7 @@
#define SPIDEV_MAJOR 153 /* assigned */
#define N_SPI_MINORS 32 /* ... up to 256 */
static DECLARE_BITMAP(minors,N_SPI_MINORS);
static DECLARE_BITMAP(minors, N_SPI_MINORS);
/* Bit masks for spi_device.mode management. Note that incorrect
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment