Commit c7e10c99 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

Staging: Fix continuation line formats

String constants that are continued on subsequent lines with \
are not good.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8455cd1b
...@@ -2407,8 +2407,8 @@ void PHY_SetBWModeCallback8192S(struct net_device *dev) ...@@ -2407,8 +2407,8 @@ void PHY_SetBWModeCallback8192S(struct net_device *dev)
break; break;
default: default:
RT_TRACE(COMP_DBG, "SetBWModeCallback8190Pci():\ RT_TRACE(COMP_DBG, "SetBWModeCallback8190Pci(): unknown Bandwidth: %#X\n",
unknown Bandwidth: %#X\n",priv->CurrentChannelBW); priv->CurrentChannelBW);
break; break;
} }
...@@ -3398,8 +3398,8 @@ void SwChnlCallback8192SUsb(struct net_device *dev) ...@@ -3398,8 +3398,8 @@ void SwChnlCallback8192SUsb(struct net_device *dev)
u32 delay; u32 delay;
// bool ret; // bool ret;
RT_TRACE(COMP_SCAN, "==>SwChnlCallback8190Pci(), switch to channel\ RT_TRACE(COMP_SCAN, "==>SwChnlCallback8190Pci(), switch to channel %d\n",
%d\n", priv->chan); priv->chan);
if(!priv->up) if(!priv->up)
...@@ -3525,8 +3525,8 @@ void SetBWModeCallback8192SUsb(struct net_device *dev) ...@@ -3525,8 +3525,8 @@ void SetBWModeCallback8192SUsb(struct net_device *dev)
break; break;
default: default:
RT_TRACE(COMP_DBG, "SetChannelBandwidth8190Pci():\ RT_TRACE(COMP_DBG, "SetChannelBandwidth8190Pci(): unknown Bandwidth: %#X\n",
unknown Bandwidth: %#X\n",priv->CurrentChannelBW); priv->CurrentChannelBW);
break; break;
} }
...@@ -3660,8 +3660,8 @@ void SetBWModeCallback8192SUsbWorkItem(struct net_device *dev) ...@@ -3660,8 +3660,8 @@ void SetBWModeCallback8192SUsbWorkItem(struct net_device *dev)
break; break;
default: default:
RT_TRACE(COMP_DBG, "SetBWModeCallback8192SUsbWorkItem():\ RT_TRACE(COMP_DBG, "SetBWModeCallback8192SUsbWorkItem(): unknown Bandwidth: %#X\n",
unknown Bandwidth: %#X\n",priv->CurrentChannelBW); priv->CurrentChannelBW);
break; break;
} }
......
...@@ -944,8 +944,9 @@ static int sep_lock_user_pages(struct sep_device *sep, ...@@ -944,8 +944,9 @@ static int sep_lock_user_pages(struct sep_device *sep,
dbg("data_size is %lu\n", data_size); dbg("data_size is %lu\n", data_size);
while (1); while (1);
} }
edbg("lli_array[%lu].physical_address is %08lx, \ edbg("lli_array[%lu].physical_address is %08lx, lli_array[%lu].block_size is %lu\n",
lli_array[%lu].block_size is %lu\n", count, lli_array[count].physical_address, count, lli_array[count].block_size); count, lli_array[count].physical_address,
count, lli_array[count].block_size);
} }
/* set output params */ /* set output params */
......
...@@ -658,8 +658,7 @@ static int slic_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) ...@@ -658,8 +658,7 @@ static int slic_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
if (copy_from_user(data, rq->ifr_data, 28)) { if (copy_from_user(data, rq->ifr_data, 28)) {
PRINT_ERROR PRINT_ERROR
("slic: copy_from_user FAILED getting \ ("slic: copy_from_user FAILED getting initial simba param\n");
initial simba param\n");
return -EFAULT; return -EFAULT;
} }
...@@ -674,8 +673,7 @@ static int slic_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) ...@@ -674,8 +673,7 @@ static int slic_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
(tracemon_request == (tracemon_request ==
SLIC_DUMP_IN_PROGRESS)) { SLIC_DUMP_IN_PROGRESS)) {
PRINT_ERROR PRINT_ERROR
("ATK Diagnostic Trace Dump Requested but \ ("ATK Diagnostic Trace Dump Requested but already in progress... ignore\n");
already in progress... ignore\n");
} else { } else {
PRINT_ERROR PRINT_ERROR
("ATK Diagnostic Trace Dump Requested\n"); ("ATK Diagnostic Trace Dump Requested\n");
......
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