提交 d47d78df 编写于 作者: P Pavel Roskin 提交者: John W. Linville

ath: use get_unaligned_le{16,32} in ath_hw_keysetmac()

Signed-off-by: NPavel Roskin <proski@gnu.org>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 c54dcd19
...@@ -105,11 +105,8 @@ static bool ath_hw_keysetmac(struct ath_common *common, ...@@ -105,11 +105,8 @@ static bool ath_hw_keysetmac(struct ath_common *common,
if (mac[0] & 0x01) if (mac[0] & 0x01)
unicast_flag = 0; unicast_flag = 0;
macHi = (mac[5] << 8) | mac[4]; macLo = get_unaligned_le32(mac);
macLo = (mac[3] << 24) | macHi = get_unaligned_le16(mac + 4);
(mac[2] << 16) |
(mac[1] << 8) |
mac[0];
macLo >>= 1; macLo >>= 1;
macLo |= (macHi & 1) << 31; macLo |= (macHi & 1) << 31;
macHi >>= 1; macHi >>= 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册