roboswitch: Add support for BCM63xx

These devices do not properly identify themselves.

Signed-off-by: Jouke Witteveen <j.witteveen@gmail.com>
This commit is contained in:
Jouke Witteveen 2016-07-28 19:24:26 +02:00 committed by Jouni Malinen
parent a2072a29b9
commit 715ad3386e

View file

@ -1,6 +1,6 @@
/* /*
* WPA Supplicant - roboswitch driver interface * WPA Supplicant - roboswitch driver interface
* Copyright (c) 2008-2009 Jouke Witteveen * Copyright (c) 2008-2012 Jouke Witteveen
* *
* This software may be distributed under the terms of the BSD license. * This software may be distributed under the terms of the BSD license.
* See README for more details. * See README for more details.
@ -401,7 +401,9 @@ static void * wpa_driver_roboswitch_init(void *ctx, const char *ifname)
os_free(drv); os_free(drv);
return NULL; return NULL;
} }
if (if_mii(&drv->ifr)->phy_id != ROBO_PHY_ADDR) { /* BCM63xx devices provide 0 here */
if (if_mii(&drv->ifr)->phy_id != ROBO_PHY_ADDR &&
if_mii(&drv->ifr)->phy_id != 0) {
wpa_printf(MSG_INFO, "%s: Invalid phy address (not a " wpa_printf(MSG_INFO, "%s: Invalid phy address (not a "
"RoboSwitch?)", __func__); "RoboSwitch?)", __func__);
os_free(drv); os_free(drv);