mirror of https://gitee.com/openkylin/linux.git
staging: ks7010: Remove whitespace before newline
This patch fixes the checkpatch.pl warning: WARNING: unnecessary whitespace before a quoted newline. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
baa30626a9
commit
c8abeaf802
|
@ -492,7 +492,7 @@ static void ks7010_rw_function(struct work_struct *work)
|
|||
|
||||
/* wiat after DOZE */
|
||||
if (time_after(priv->last_doze + ((30 * HZ) / 1000), jiffies)) {
|
||||
DPRINTK(4, "wait after DOZE \n");
|
||||
DPRINTK(4, "wait after DOZE\n");
|
||||
queue_delayed_work(priv->ks_wlan_hw.ks7010sdio_wq,
|
||||
&priv->ks_wlan_hw.rw_wq, 1);
|
||||
return;
|
||||
|
@ -500,7 +500,7 @@ static void ks7010_rw_function(struct work_struct *work)
|
|||
|
||||
/* wiat after WAKEUP */
|
||||
while (time_after(priv->last_wakeup + ((30 * HZ) / 1000), jiffies)) {
|
||||
DPRINTK(4, "wait after WAKEUP \n");
|
||||
DPRINTK(4, "wait after WAKEUP\n");
|
||||
/* queue_delayed_work(priv->ks_wlan_hw.ks7010sdio_wq,&priv->ks_wlan_hw.rw_wq,
|
||||
(priv->last_wakeup + ((30*HZ)/1000) - jiffies));*/
|
||||
printk("wake: %lu %lu\n", priv->last_wakeup + (30 * HZ) / 1000,
|
||||
|
@ -745,7 +745,7 @@ static int ks7010_sdio_data_compare(struct ks_wlan_private *priv, u32 address,
|
|||
retval = memcmp(data, read_buf, size);
|
||||
|
||||
if (retval) {
|
||||
DPRINTK(0, "data compare error (%d) \n", retval);
|
||||
DPRINTK(0, "data compare error (%d)\n", retval);
|
||||
rc = 3;
|
||||
goto error_out;
|
||||
}
|
||||
|
|
|
@ -244,13 +244,13 @@ int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info,
|
|||
offset = 0;
|
||||
|
||||
while (bsize > offset) {
|
||||
/* DPRINTK(4, "Element ID=%d \n",*bp); */
|
||||
/* DPRINTK(4, "Element ID=%d\n",*bp); */
|
||||
switch (*bp) {
|
||||
case 0: /* ssid */
|
||||
if (*(bp + 1) <= SSID_MAX_SIZE) {
|
||||
ap->ssid.size = *(bp + 1);
|
||||
} else {
|
||||
DPRINTK(1, "size over :: ssid size=%d \n",
|
||||
DPRINTK(1, "size over :: ssid size=%d\n",
|
||||
*(bp + 1));
|
||||
ap->ssid.size = SSID_MAX_SIZE;
|
||||
}
|
||||
|
@ -264,7 +264,7 @@ int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info,
|
|||
bp + 2, *(bp + 1));
|
||||
ap->rate_set.size += *(bp + 1);
|
||||
} else {
|
||||
DPRINTK(1, "size over :: rate size=%d \n",
|
||||
DPRINTK(1, "size over :: rate size=%d\n",
|
||||
(*(bp + 1) + ap->rate_set.size));
|
||||
memcpy(&(ap->rate_set.body[ap->rate_set.size]),
|
||||
bp + 2,
|
||||
|
@ -280,7 +280,7 @@ int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info,
|
|||
if (*(bp + 1) <= RSN_IE_BODY_MAX) {
|
||||
ap->rsn_ie.size = *(bp + 1);
|
||||
} else {
|
||||
DPRINTK(1, "size over :: rsn size=%d \n",
|
||||
DPRINTK(1, "size over :: rsn size=%d\n",
|
||||
*(bp + 1));
|
||||
ap->rsn_ie.size = RSN_IE_BODY_MAX;
|
||||
}
|
||||
|
@ -293,7 +293,7 @@ int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info,
|
|||
ap->wpa_ie.size = *(bp + 1);
|
||||
} else {
|
||||
DPRINTK(1,
|
||||
"size over :: wpa size=%d \n",
|
||||
"size over :: wpa size=%d\n",
|
||||
*(bp + 1));
|
||||
ap->wpa_ie.size = RSN_IE_BODY_MAX;
|
||||
}
|
||||
|
@ -311,7 +311,7 @@ int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info,
|
|||
case 47: /* Reserve ID 47 Broadcom AP */
|
||||
break;
|
||||
default:
|
||||
DPRINTK(4, "unknown Element ID=%d \n", *bp);
|
||||
DPRINTK(4, "unknown Element ID=%d\n", *bp);
|
||||
break;
|
||||
}
|
||||
offset += 2; /* id & size field */
|
||||
|
@ -408,7 +408,7 @@ void hostif_data_indication(struct ks_wlan_private *priv)
|
|||
HZ >= 60) {
|
||||
mic_failure->failure = 0;
|
||||
}
|
||||
DPRINTK(4, "MIC FAILURE \n");
|
||||
DPRINTK(4, "MIC FAILURE\n");
|
||||
if (mic_failure->failure == 0) {
|
||||
mic_failure->failure = 1;
|
||||
mic_failure->counter = 0;
|
||||
|
@ -1150,7 +1150,7 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *packet)
|
|||
|
||||
packet_len = packet->len;
|
||||
if (packet_len > ETH_FRAME_LEN) {
|
||||
DPRINTK(1, "bad length packet_len=%d \n", packet_len);
|
||||
DPRINTK(1, "bad length packet_len=%d\n", packet_len);
|
||||
dev_kfree_skb(packet);
|
||||
return -1;
|
||||
}
|
||||
|
@ -1447,7 +1447,7 @@ void hostif_infrastructure_set_request(struct ks_wlan_private *priv)
|
|||
struct hostif_infrastructure_set_request_t *pp;
|
||||
uint16_t capability;
|
||||
|
||||
DPRINTK(3, "ssid.size=%d \n", priv->reg.ssid.size);
|
||||
DPRINTK(3, "ssid.size=%d\n", priv->reg.ssid.size);
|
||||
|
||||
/* make primitive */
|
||||
pp = (struct hostif_infrastructure_set_request_t *)
|
||||
|
@ -1514,7 +1514,7 @@ static void hostif_infrastructure_set2_request(struct ks_wlan_private *priv)
|
|||
struct hostif_infrastructure_set2_request_t *pp;
|
||||
uint16_t capability;
|
||||
|
||||
DPRINTK(2, "ssid.size=%d \n", priv->reg.ssid.size);
|
||||
DPRINTK(2, "ssid.size=%d\n", priv->reg.ssid.size);
|
||||
|
||||
/* make primitive */
|
||||
pp = (struct hostif_infrastructure_set2_request_t *)
|
||||
|
@ -1759,7 +1759,7 @@ void hostif_sleep_request(struct ks_wlan_private *priv, unsigned long mode)
|
|||
{
|
||||
struct hostif_sleep_request_t *pp;
|
||||
|
||||
DPRINTK(3, "mode=%lu \n", mode);
|
||||
DPRINTK(3, "mode=%lu\n", mode);
|
||||
|
||||
if (mode == SLP_SLEEP) {
|
||||
/* make primitive */
|
||||
|
@ -1783,7 +1783,7 @@ void hostif_sleep_request(struct ks_wlan_private *priv, unsigned long mode)
|
|||
queue_delayed_work(priv->ks_wlan_hw.ks7010sdio_wq,
|
||||
&priv->ks_wlan_hw.rw_wq, 1);
|
||||
} else {
|
||||
DPRINTK(3, "invalid mode %ld \n", mode);
|
||||
DPRINTK(3, "invalid mode %ld\n", mode);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue