2008/10/12 Jiri Slaby <jirislaby@xxxxxxxxx>: > Add support for AP mode. This involves: > - enablement in ath5k_beacon_config -- initialize beacon timer > - add AP to the supported modes in ath5k_add_interface > - handle beacon change even for AP in ath5k_config_interface > - remove useless test for IBSS in ath5k_beacon_update > > Note that it doesn't enable the AP mode for the driver. It must > be enabled by NL80211_IFTYPE_AP bit added to interface_modes. > > v2: > Fixed opmode constant (IEEE80211_ to NL80211_) > > Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> > Cc: Nick Kossifidis <mickflemm@xxxxxxxxx> > Cc: Luis R. Rodriguez <mcgrof@xxxxxxxxx> a) It won't work without the following as Gregory pointed out diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index e09ed2c..69aad6e 100644 --- a/drivers/net/wireless/ath5k/base.c +++ b/drivers/net/wireless/ath5k/base.c @@ -488,6 +488,7 @@ ath5k_pci_probe(struct pci_dev *pdev, hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | + BIT(NL80211_IFTYPE_AP) | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_MESH_POINT); b) For some reason it only works with 5212/5213 cards, i tested it on a 5413 and an 2425 and it didn't work (hostapd seems to hang). -- GPG ID: 0xD21DB2DB As you read this post global entropy rises. Have Fun ;-) Nick -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html