Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: cxt1e1: Fix line length over 80 characters in functions.c

This patch fixes the following checkpatch.pl warning in functions.c
WARNING: Line length over 80 characters

Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Monam Agarwal and committed by
Greg Kroah-Hartman
f5bde447 08e624a0

+6 -3
+6 -3
drivers/staging/cxt1e1/functions.c
··· 25 25 #include "pmcc4.h" 26 26 27 27 #if defined(CONFIG_SBE_HDLC_V7) || defined(CONFIG_SBE_WAN256T3_HDLC_V7) || \ 28 - defined(CONFIG_SBE_HDLC_V7_MODULE) || defined(CONFIG_SBE_WAN256T3_HDLC_V7_MODULE) 28 + defined(CONFIG_SBE_HDLC_V7_MODULE) || \ 29 + defined(CONFIG_SBE_WAN256T3_HDLC_V7_MODULE) 29 30 #define _v7_hdlc_ 1 30 31 #else 31 32 #define _v7_hdlc_ 0 ··· 112 111 113 112 if (drvr_state != SBE_DRVR_AVAILABLE) { 114 113 if (cxt1e1_log_level >= LOG_MONITOR) 115 - pr_warning("%s: drvr not available (%x)\n", __func__, drvr_state); 114 + pr_warning("%s: drvr not available (%x)\n", 115 + __func__, drvr_state); 116 116 return; 117 117 } 118 118 schedule_work(&wd->work); 119 119 mod_timer(&wd->h, jiffies + wd->ticks); 120 120 } 121 121 122 - int OS_init_watchdog(struct watchdog *wdp, void (*f) (void *), void *c, int usec) 122 + int OS_init_watchdog(struct watchdog *wdp, void (*f) (void *), 123 + void *c, int usec) 123 124 { 124 125 wdp->func = f; 125 126 wdp->softc = c;