Commit 83231b72 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: fixes alignment should match open parenthesis



This patch fixes the checks reported by checkpatch.pl
for alignment should match open parenthesis

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b22fa80c
Loading
Loading
Loading
Loading
+6 −5
Original line number Original line Diff line number Diff line
@@ -264,9 +264,11 @@ static int init_irq(struct net_device *dev)
		PRINT_ER("could not obtain gpio for WILC_INTR\n");
		PRINT_ER("could not obtain gpio for WILC_INTR\n");
	}
	}


	if ((ret != -1) && (request_threaded_irq(wl->dev_irq_num, isr_uh_routine, isr_bh_routine,
	if (ret != -1 && request_threaded_irq(wl->dev_irq_num,
					      isr_uh_routine,
					      isr_bh_routine,
					      IRQF_TRIGGER_LOW | IRQF_ONESHOT,
					      IRQF_TRIGGER_LOW | IRQF_ONESHOT,
						  "WILC_IRQ", dev)) < 0) {
					      "WILC_IRQ", dev) < 0) {
		PRINT_ER("Failed to request IRQ for GPIO: %d\n", GPIO_NUM);
		PRINT_ER("Failed to request IRQ for GPIO: %d\n", GPIO_NUM);
		ret = -1;
		ret = -1;
	} else {
	} else {
@@ -1472,8 +1474,7 @@ void wl_wlan_cleanup(struct wilc *wilc)
	int i = 0;
	int i = 0;
	perInterface_wlan_t *nic[NUM_CONCURRENT_IFC];
	perInterface_wlan_t *nic[NUM_CONCURRENT_IFC];


	if (wilc &&
	if (wilc && (wilc->vif[0].ndev || wilc->vif[1].ndev)) {
	   (wilc->vif[0].ndev || wilc->vif[1].ndev)) {
		unregister_inetaddr_notifier(&g_dev_notifier);
		unregister_inetaddr_notifier(&g_dev_notifier);


		for (i = 0; i < NUM_CONCURRENT_IFC; i++)
		for (i = 0; i < NUM_CONCURRENT_IFC; i++)