Skip to content

Commit

Permalink
staging: ath6kl: Fixing driver initialization for manufacturing mode
Browse files Browse the repository at this point in the history
Fixing the driver initialization for manufacturing mode that involves
downloading a firmware binary meant for RF tests on the factory floor.

Signed-off-by: Vipin Mehta <vmehta@atheros.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Vipin Mehta authored and Greg Kroah-Hartman committed Feb 18, 2011
1 parent 83195cc commit caf3fb4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/staging/ath6kl/os/linux/ar6000_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1806,7 +1806,9 @@ ar6000_avail_ev(void *context, void *hif_handle)
break;
}
#ifdef HTC_RAW_INTERFACE
break; /* Don't call ar6000_init for ART */
if (!eppingtest && bypasswmi) {
break; /* Don't call ar6000_init for ART */
}
#endif
rtnl_lock();
status = (ar6000_init(dev)==0) ? 0 : A_ERROR;
Expand Down

0 comments on commit caf3fb4

Please sign in to comment.