Repository : ssh://git@open-mesh.org/batman-adv
On branch : master
commit 170292019eb2a6e14d99bbe7da96e4b9f4c88dcf Author: Sven Eckelmann sven@narfation.org Date: Sat Sep 15 09:53:08 2018 +0200
batman-adv: Fix batadv_debugfs_deprecated line over 80 chars
Fixes: a0e9c94f2903 ("batman-adv: Provide debug messages as trace events") Signed-off-by: Sven Eckelmann sven@narfation.org
170292019eb2a6e14d99bbe7da96e4b9f4c88dcf net/batman-adv/log.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/batman-adv/log.c b/net/batman-adv/log.c index 8a3d691..6beb5f0 100644 --- a/net/batman-adv/log.c +++ b/net/batman-adv/log.c @@ -124,7 +124,8 @@ static int batadv_log_open(struct inode *inode, struct file *file) if (!try_module_get(THIS_MODULE)) return -EBUSY;
- batadv_debugfs_deprecated(file, "Use tracepoint batadv:batadv_dbg instead\n"); + batadv_debugfs_deprecated(file, + "Use tracepoint batadv:batadv_dbg instead\n");
nonseekable_open(inode, file); file->private_data = inode->i_private;