broadcom-wl: support probe of 'wds' devices
'nas' requires probe of 'wds' devices to be successful; so don't fail them. Signed-off-by: Nathan Hintz <nlhintz@hotmail.com> SVN-Revision: 38763
This commit is contained in:
parent
697f4a19e5
commit
753d52c2a4
1 changed files with 11 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
--- a/shared/wl.c
|
||||
+++ b/shared/wl.c
|
||||
@@ -27,7 +27,7 @@ wl_probe(char *name)
|
||||
{
|
||||
int ret, val;
|
||||
|
||||
- if ((name[0] != 'w') || (name[1] != 'l'))
|
||||
+ if ((name[0] != 'w') || ((name[1] != 'l') && ((name[1] != 'd') || (name[2] != 's'))))
|
||||
return -1;
|
||||
|
||||
/* Check interface */
|
Loading…
Reference in a new issue