Commit 74cffafb authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: use single space before opening brances '{'

Cleanup patch to use single space instead of multiple space before the
'{'.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9542c441
...@@ -799,7 +799,7 @@ static void handle_scan(struct work_struct *work) ...@@ -799,7 +799,7 @@ static void handle_scan(struct work_struct *work)
scan_info->ch_list_len > 0) { scan_info->ch_list_len > 0) {
int i; int i;
for (i = 0; i < scan_info->ch_list_len; i++) { for (i = 0; i < scan_info->ch_list_len; i++) {
if (scan_info->ch_freq_list[i] > 0) if (scan_info->ch_freq_list[i] > 0)
scan_info->ch_freq_list[i] -= 1; scan_info->ch_freq_list[i] -= 1;
} }
...@@ -3337,7 +3337,7 @@ int wilc_deinit(struct wilc_vif *vif) ...@@ -3337,7 +3337,7 @@ int wilc_deinit(struct wilc_vif *vif)
int result = 0; int result = 0;
struct host_if_drv *hif_drv = vif->hif_drv; struct host_if_drv *hif_drv = vif->hif_drv;
if (!hif_drv) { if (!hif_drv) {
netdev_err(vif->ndev, "hif_drv = NULL\n"); netdev_err(vif->ndev, "hif_drv = NULL\n");
return -EFAULT; return -EFAULT;
} }
...@@ -3404,7 +3404,7 @@ void wilc_network_info_received(struct wilc *wilc, u8 *buffer, u32 length) ...@@ -3404,7 +3404,7 @@ void wilc_network_info_received(struct wilc *wilc, u8 *buffer, u32 length)
return; return;
hif_drv = vif->hif_drv; hif_drv = vif->hif_drv;
if (!hif_drv || hif_drv == terminated_handle) { if (!hif_drv || hif_drv == terminated_handle) {
netdev_err(vif->ndev, "driver not init[%p]\n", hif_drv); netdev_err(vif->ndev, "driver not init[%p]\n", hif_drv);
return; return;
} }
......
...@@ -604,7 +604,7 @@ static void wilc_wlan_deinitialize(struct net_device *dev) ...@@ -604,7 +604,7 @@ static void wilc_wlan_deinitialize(struct net_device *dev)
return; return;
} }
if (wl->initialized) { if (wl->initialized) {
netdev_info(dev, "Deinitializing wilc1000...\n"); netdev_info(dev, "Deinitializing wilc1000...\n");
if (!wl->dev_irq_num && if (!wl->dev_irq_num &&
......
...@@ -524,7 +524,7 @@ static void cfg_connect_result(enum conn_event conn_disconn_evt, ...@@ -524,7 +524,7 @@ static void cfg_connect_result(enum conn_event conn_disconn_evt,
conn_info->resp_ies, conn_info->resp_ies,
conn_info->resp_ies_len, connect_status, conn_info->resp_ies_len, connect_status,
GFP_KERNEL); GFP_KERNEL);
} else if (conn_disconn_evt == CONN_DISCONN_EVENT_DISCONN_NOTIF) { } else if (conn_disconn_evt == CONN_DISCONN_EVENT_DISCONN_NOTIF) {
wilc_optaining_ip = false; wilc_optaining_ip = false;
p2p_local_random = 0x01; p2p_local_random = 0x01;
p2p_recv_random = 0x00; p2p_recv_random = 0x00;
......
...@@ -436,7 +436,7 @@ void chip_wakeup(struct wilc *wilc) ...@@ -436,7 +436,7 @@ void chip_wakeup(struct wilc *wilc)
wilc_get_chipid(wilc, true); wilc_get_chipid(wilc, true);
} while (wilc_get_chipid(wilc, true) == 0); } while (wilc_get_chipid(wilc, true) == 0);
} while (wilc_get_chipid(wilc, true) == 0); } while (wilc_get_chipid(wilc, true) == 0);
} else if ((wilc->io_type & 0x1) == HIF_SDIO) { } else if ((wilc->io_type & 0x1) == HIF_SDIO) {
wilc->hif_func->hif_write_reg(wilc, 0xfa, 1); wilc->hif_func->hif_write_reg(wilc, 0xfa, 1);
udelay(200); udelay(200);
wilc->hif_func->hif_read_reg(wilc, 0xf0, &reg); wilc->hif_func->hif_read_reg(wilc, 0xf0, &reg);
......
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