Skip to content

Commit

Permalink
staging/trivial: fix typos concerning "failed"
Browse files Browse the repository at this point in the history
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Uwe Kleine-König authored and Greg Kroah-Hartman committed Feb 18, 2011
1 parent 9e36261 commit f0c0dda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/brcm80211/brcmfmac/dhd_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -2444,7 +2444,7 @@ static int __init dhd_module_init(void)
error = wifi_add_dev();
if (error) {
DHD_ERROR(("%s: platform_driver_register failed\n", __func__));
goto faild;
goto failed;
}

/* Waiting callback after platform_driver_register is done or
Expand All @@ -2454,19 +2454,19 @@ static int __init dhd_module_init(void)
__func__);
/* remove device */
wifi_del_dev();
goto faild;
goto failed;
}
#endif /* #if defined(CUSTOMER_HW2) && defined(CONFIG_WIFI_CONTROL_FUNC) */

error = dhd_bus_register();

if (error) {
DHD_ERROR(("%s: sdio_register_driver failed\n", __func__));
goto faild;
goto failed;
}
return error;

faild:
failed:
/* turn off power and exit */
dhd_customer_gpio_wlan_ctrl(WLAN_POWER_OFF);
return -EINVAL;
Expand Down

0 comments on commit f0c0dda

Please sign in to comment.