staging: wilc1000: Fixing struct definition layout
authorVincent Siles <vincent.siles@provenrun.com>
Tue, 2 May 2017 14:18:43 +0000 (16:18 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 May 2017 05:41:58 +0000 (07:41 +0200)
Split struct definition across multiple line to fit in the 80 characters
limit

Signed-off-by: Vincent Siles <vincent.siles@provenrun.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_debugfs.c

index 12d356a..ce54864 100644 (file)
@@ -98,7 +98,12 @@ struct wilc_debugfs_info_t {
 };
 
 static struct wilc_debugfs_info_t debugfs_info[] = {
-       { "wilc_debug_level",   0666,   (DEBUG | ERR), FOPS(NULL, wilc_debug_level_read, wilc_debug_level_write, NULL), },
+       {
+               "wilc_debug_level",
+               0666,
+               (DEBUG | ERR),
+               FOPS(NULL, wilc_debug_level_read, wilc_debug_level_write, NULL),
+       },
 };
 
 static int __init wilc_debugfs_init(void)