summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2005-03-12 13:25:46 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2005-03-12 13:25:46 +0000
commit137cbd1e66b229625eb60b2575c268b3b7800054 (patch)
treecf39d214f486d8b5d0fc9f7480060c8385f20294 /sys/dev
parente2f3fef6ab7f8f6baf2b5b62c4adc1b84ce8bbac (diff)
IBSS is not yet supported, remove it from the capabilities flags.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_iwi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_iwi.c b/sys/dev/pci/if_iwi.c
index 029ae7ae92d..ccb45bd2cc7 100644
--- a/sys/dev/pci/if_iwi.c
+++ b/sys/dev/pci/if_iwi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwi.c,v 1.27 2005/02/21 13:33:29 damien Exp $ */
+/* $OpenBSD: if_iwi.c,v 1.28 2005/03/12 13:25:45 damien Exp $ */
/*-
* Copyright (c) 2004, 2005
@@ -237,8 +237,8 @@ iwi_attach(struct device *parent, struct device *self, void *aux)
ic->ic_state = IEEE80211_S_INIT;
/* set device capabilities */
- ic->ic_caps = IEEE80211_C_IBSS | IEEE80211_C_PMGT | IEEE80211_C_WEP |
- IEEE80211_C_TXPMGT | IEEE80211_C_SHPREAMBLE | IEEE80211_C_SCANALL;
+ ic->ic_caps = IEEE80211_C_PMGT | IEEE80211_C_WEP | IEEE80211_C_TXPMGT |
+ IEEE80211_C_SHPREAMBLE | IEEE80211_C_SCANALL;
/* read MAC address from EEPROM */
val = iwi_read_prom_word(sc, IWI_EEPROM_MAC + 0);