diff options
author | Jiri Pirko <jpirko@redhat.com> | 2009-05-11 19:37:15 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-05-17 14:59:47 -0400 |
commit | 3a6d54c56326c29c5357655779cfe6cf36481b17 (patch) | |
tree | 1c2f47eecebe98b8501d884cf482a8b777171cd7 /drivers/net/wireless/hostap | |
parent | 8b3521eeb7598c3b10c7e14361a7974464527702 (diff) |
net: remove needless (now buggy) & from dev->dev_addr
Patch fixes issues with dev->dev_addr changing from array to pointer.
Hopefully there are no others.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/hostap')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index 3dad1cf8f241..ff9b5c882184 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c | |||
@@ -1423,7 +1423,7 @@ static int prism2_hw_init2(struct net_device *dev, int initial) | |||
1423 | prism2_check_sta_fw_version(local); | 1423 | prism2_check_sta_fw_version(local); |
1424 | 1424 | ||
1425 | if (hfa384x_get_rid(dev, HFA384X_RID_CNFOWNMACADDR, | 1425 | if (hfa384x_get_rid(dev, HFA384X_RID_CNFOWNMACADDR, |
1426 | &dev->dev_addr, 6, 1) < 0) { | 1426 | dev->dev_addr, 6, 1) < 0) { |
1427 | printk("%s: could not get own MAC address\n", | 1427 | printk("%s: could not get own MAC address\n", |
1428 | dev->name); | 1428 | dev->name); |
1429 | } | 1429 | } |