Fix a commit-o: handle all cases in the switch-statement.
This commit is contained in:
parent
4e2ccd85f7
commit
60565a3dfb
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: atw.c,v 1.34 2004/06/23 08:12:28 dyoung Exp $ */
|
||||
/* $NetBSD: atw.c,v 1.35 2004/06/23 09:05:50 dyoung Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998, 1999, 2000, 2002, 2003, 2004 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: atw.c,v 1.34 2004/06/23 08:12:28 dyoung Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: atw.c,v 1.35 2004/06/23 09:05:50 dyoung Exp $");
|
||||
|
||||
#include "bpfilter.h"
|
||||
|
||||
|
@ -634,6 +634,10 @@ atw_attach(struct atw_softc *sc)
|
|||
break;
|
||||
case ATW_BBPTYPE_MARVEL:
|
||||
break;
|
||||
case ATW_C_BBPTYPE_RFMD:
|
||||
printf("%s: ADM8211C MAC/RFMD BBP not supported yet.\n",
|
||||
sc->sc_dev.dv_xname);
|
||||
break;
|
||||
}
|
||||
|
||||
sc->sc_bbpctl_wr = reg | ATW_BBPCTL_WR;
|
||||
|
|
Loading…
Reference in New Issue