Split struct definition across multiple line to fit in the 80 characters
limit

Signed-off-by: Vincent Siles <vincent.si...@provenrun.com>
---
 drivers/staging/wilc1000/wilc_debugfs.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/wilc1000/wilc_debugfs.c 
b/drivers/staging/wilc1000/wilc_debugfs.c
index 12d356a..ce54864 100644
--- a/drivers/staging/wilc1000/wilc_debugfs.c
+++ b/drivers/staging/wilc1000/wilc_debugfs.c
@@ -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)
-- 
1.9.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to