mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-21 20:13:39 +00:00
Merge branch 'master' of http://github.com/lwfinger/rtl8188eu
This commit is contained in:
commit
1d89650644
1 changed files with 2 additions and 2 deletions
|
@ -245,8 +245,8 @@ static void efuse_read_phymap_from_txpktbuf(
|
|||
rtw_usleep_os(100);
|
||||
}
|
||||
|
||||
lo32 = rtw_read32(adapter, REG_PKTBUF_DBG_DATA_L);
|
||||
hi32 = rtw_read32(adapter, REG_PKTBUF_DBG_DATA_H);
|
||||
lo32 = le32_to_cpu((__le32)rtw_read32(adapter, REG_PKTBUF_DBG_DATA_L));
|
||||
hi32 = le32_to_cpu((__le32)rtw_read32(adapter, REG_PKTBUF_DBG_DATA_H));
|
||||
|
||||
if (i == 0) {
|
||||
u8 lenc[2];
|
||||
|
|
Loading…
Reference in a new issue