package/rtl8189es: fix build failure on PowerPC64
Add local patches pending upstream[0] to fix conflict of get_ra(). get_ra() is present both in PowerPC64 Linux header and in rtl8189es driver so in the patch we rename all the occurrences to rtl_get_ra(). Fixes: http://autobuild.buildroot.net/results/45efdb0806d0bb2f7d542be80ed02bf2dc080df4/ [0]: https://github.com/jwrdegoede/rtl8189ES_linux/pull/94 Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
6454358fe1
commit
4789d37cc4
113
package/rtl8189es/0001-Fix-build-failure-on-PowerPC64.patch
Normal file
113
package/rtl8189es/0001-Fix-build-failure-on-PowerPC64.patch
Normal file
@ -0,0 +1,113 @@
|
||||
From c7bf7590bc0d7252005fd0496898ad420a85e1ae Mon Sep 17 00:00:00 2001
|
||||
From: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
||||
Date: Mon, 27 Feb 2023 09:12:39 +0100
|
||||
Subject: [PATCH] Fix build failure on PowerPC64
|
||||
|
||||
get_ra() is defined in Linux kernel for PowerPC64 architecture and it
|
||||
conflicts with local get_ra() definition so let's rename local definition
|
||||
as rtl_get_ra().
|
||||
|
||||
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
||||
---
|
||||
core/rtw_odm.c | 6 +++---
|
||||
core/rtw_recv.c | 4 ++--
|
||||
hal/hal_com.c | 2 +-
|
||||
include/wifi.h | 2 +-
|
||||
os_dep/linux/ioctl_cfg80211.c | 2 +-
|
||||
5 files changed, 8 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/core/rtw_odm.c b/core/rtw_odm.c
|
||||
index 8a35816..d74e134 100644
|
||||
--- a/core/rtw_odm.c
|
||||
+++ b/core/rtw_odm.c
|
||||
@@ -273,7 +273,7 @@ void rtw_odm_parse_rx_phy_status_chinfo(union recv_frame *rframe, u8 *phys)
|
||||
RTW_PRINT("phys_t%u ta="MAC_FMT" %s, %s(band:%u, ch:%u, l_rxsc:%u)\n"
|
||||
, *phys & 0xf
|
||||
, MAC_ARG(get_ta(wlanhdr))
|
||||
- , is_broadcast_mac_addr(get_ra(wlanhdr)) ? "BC" : is_multicast_mac_addr(get_ra(wlanhdr)) ? "MC" : "UC"
|
||||
+ , is_broadcast_mac_addr(rtl_get_ra(wlanhdr)) ? "BC" : is_multicast_mac_addr(rtl_get_ra(wlanhdr)) ? "MC" : "UC"
|
||||
, HDATA_RATE(attrib->data_rate)
|
||||
, phys_t0->band, phys_t0->channel, phys_t0->rxsc
|
||||
);
|
||||
@@ -383,7 +383,7 @@ type1_end:
|
||||
RTW_PRINT("phys_t%u ta="MAC_FMT" %s, %s(band:%u, ch:%u, rf_mode:%u, l_rxsc:%u, ht_rxsc:%u) => %u,%u\n"
|
||||
, *phys & 0xf
|
||||
, MAC_ARG(get_ta(wlanhdr))
|
||||
- , is_broadcast_mac_addr(get_ra(wlanhdr)) ? "BC" : is_multicast_mac_addr(get_ra(wlanhdr)) ? "MC" : "UC"
|
||||
+ , is_broadcast_mac_addr(rtl_get_ra(wlanhdr)) ? "BC" : is_multicast_mac_addr(rtl_get_ra(wlanhdr)) ? "MC" : "UC"
|
||||
, HDATA_RATE(attrib->data_rate)
|
||||
, phys_t1->band, phys_t1->channel, phys_t1->rf_mode, phys_t1->l_rxsc, phys_t1->ht_rxsc
|
||||
, pkt_cch, pkt_bw
|
||||
@@ -401,7 +401,7 @@ type1_end:
|
||||
RTW_PRINT("phys_t%u ta="MAC_FMT" %s, %s(band:%u, ch:%u, l_rxsc:%u, ht_rxsc:%u)\n"
|
||||
, *phys & 0xf
|
||||
, MAC_ARG(get_ta(wlanhdr))
|
||||
- , is_broadcast_mac_addr(get_ra(wlanhdr)) ? "BC" : is_multicast_mac_addr(get_ra(wlanhdr)) ? "MC" : "UC"
|
||||
+ , is_broadcast_mac_addr(rtl_get_ra(wlanhdr)) ? "BC" : is_multicast_mac_addr(rtl_get_ra(wlanhdr)) ? "MC" : "UC"
|
||||
, HDATA_RATE(attrib->data_rate)
|
||||
, phys_t2->band, phys_t2->channel, phys_t2->l_rxsc, phys_t2->ht_rxsc
|
||||
);
|
||||
diff --git a/core/rtw_recv.c b/core/rtw_recv.c
|
||||
index dc65adf..a5a65f9 100644
|
||||
--- a/core/rtw_recv.c
|
||||
+++ b/core/rtw_recv.c
|
||||
@@ -4678,7 +4678,7 @@ void rx_query_phy_status(
|
||||
wlanhdr = get_recvframe_data(precvframe);
|
||||
|
||||
ta = get_ta(wlanhdr);
|
||||
- ra = get_ra(wlanhdr);
|
||||
+ ra = rtl_get_ra(wlanhdr);
|
||||
is_ra_bmc = IS_MCAST(ra);
|
||||
|
||||
if (_rtw_memcmp(adapter_mac_addr(padapter), ta, ETH_ALEN) == _TRUE) {
|
||||
@@ -4818,7 +4818,7 @@ s32 pre_recv_entry(union recv_frame *precvframe, u8 *pphy_status)
|
||||
{
|
||||
s32 ret = _SUCCESS;
|
||||
u8 *pbuf = precvframe->u.hdr.rx_data;
|
||||
- u8 *pda = get_ra(pbuf);
|
||||
+ u8 *pda = rtl_get_ra(pbuf);
|
||||
u8 ra_is_bmc = IS_MCAST(pda);
|
||||
_adapter *primary_padapter = precvframe->u.hdr.adapter;
|
||||
#ifdef CONFIG_CONCURRENT_MODE
|
||||
diff --git a/hal/hal_com.c b/hal/hal_com.c
|
||||
index c28ae39..27b0825 100644
|
||||
--- a/hal/hal_com.c
|
||||
+++ b/hal/hal_com.c
|
||||
@@ -13406,7 +13406,7 @@ void rtw_store_phy_info(_adapter *padapter, union recv_frame *prframe)
|
||||
|
||||
/*RTW_INFO("=>%s WIFI_DATA_TYPE or WIFI_QOS_DATA_TYPE\n", __FUNCTION__);*/
|
||||
if (psta) {
|
||||
- if (IS_MCAST(get_ra(get_recvframe_data(prframe))))
|
||||
+ if (IS_MCAST(rtl_get_ra(get_recvframe_data(prframe))))
|
||||
psta_dframe_info = &psta->sta_dframe_info_bmc;
|
||||
else
|
||||
psta_dframe_info = &psta->sta_dframe_info;
|
||||
diff --git a/include/wifi.h b/include/wifi.h
|
||||
index def77a4..c2e7afb 100644
|
||||
--- a/include/wifi.h
|
||||
+++ b/include/wifi.h
|
||||
@@ -456,7 +456,7 @@ __inline static int IS_MCAST(const u8 *da)
|
||||
return _FALSE;
|
||||
}
|
||||
|
||||
-__inline static unsigned char *get_ra(unsigned char *pframe)
|
||||
+__inline static unsigned char *rtl_get_ra(unsigned char *pframe)
|
||||
{
|
||||
unsigned char *ra;
|
||||
ra = GetAddr1Ptr(pframe);
|
||||
diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c
|
||||
index 4e810e5..e744d69 100644
|
||||
--- a/os_dep/linux/ioctl_cfg80211.c
|
||||
+++ b/os_dep/linux/ioctl_cfg80211.c
|
||||
@@ -6347,7 +6347,7 @@ void rtw_cfg80211_rx_p2p_action_public(_adapter *adapter, union recv_frame *rfra
|
||||
indicate:
|
||||
#endif
|
||||
#if defined(RTW_DEDICATED_P2P_DEVICE)
|
||||
- if (rtw_cfg80211_redirect_pd_wdev(dvobj_to_wiphy(dvobj), get_ra(frame), &wdev))
|
||||
+ if (rtw_cfg80211_redirect_pd_wdev(dvobj_to_wiphy(dvobj), rtl_get_ra(frame), &wdev))
|
||||
if (0)
|
||||
RTW_INFO("redirect to pd_wdev:%p\n", wdev);
|
||||
#endif
|
||||
--
|
||||
2.34.1
|
||||
|
Loading…
Reference in New Issue
Block a user