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

Commit 119c331f authored by Alan Ott's avatar Alan Ott Committed by David S. Miller
Browse files

mrf24j40: Fix byte-order of IEEE address



Load the 64-bit Extended (IEEE) address into the hardware in the proper
byte order.

Signed-off-by: default avatarAlan Ott <alan@signal11.us>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cf82dabd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -478,7 +478,7 @@ static int mrf24j40_filter(struct ieee802154_dev *dev,
		int i;
		for (i = 0; i < 8; i++)
			write_short_reg(devrec, REG_EADR0+i,
					filt->ieee_addr[i]);
					filt->ieee_addr[7-i]);

#ifdef DEBUG
		printk(KERN_DEBUG "Set long addr to: ");