"wl1251: add support for PG11 chips." accidentally enabled PG10 chips as
well...

Reported-by: Kalle Valo <kalle.valo@iki.fi>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
John W. Linville 2009-10-27 15:15:05 -04:00
Родитель 72f5f45756
Коммит 9a493e8f4d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -183,11 +183,11 @@ static int wl1251_chip_wakeup(struct wl1251 *wl)
wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG12)", wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG12)",
wl->chip_id); wl->chip_id);
break; break;
case CHIP_ID_1251_PG10:
case CHIP_ID_1251_PG11: case CHIP_ID_1251_PG11:
wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG11)", wl1251_debug(DEBUG_BOOT, "chip id 0x%x (1251 PG11)",
wl->chip_id); wl->chip_id);
break; break;
case CHIP_ID_1251_PG10:
default: default:
wl1251_error("unsupported chip id: 0x%x", wl->chip_id); wl1251_error("unsupported chip id: 0x%x", wl->chip_id);
ret = -ENODEV; ret = -ENODEV;