Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd87145d authored by Ivo van Doorn's avatar Ivo van Doorn Committed by John W. Linville
Browse files

rt2x00: Corectly initialize rt2500usb MAC



mac is a pointer, obviously we shouldn't use the address
of a pointer as MAC address.

Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 62bc060b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -257,7 +257,7 @@ static const struct rt2x00debug rt2500usb_rt2x00debug = {
static void rt2500usb_config_mac_addr(struct rt2x00_dev *rt2x00dev,
				      __le32 *mac)
{
	rt2500usb_register_multiwrite(rt2x00dev, MAC_CSR2, &mac,
	rt2500usb_register_multiwrite(rt2x00dev, MAC_CSR2, mac,
				      (3 * sizeof(__le16)));
}