package/rtl8723bu: bump to 2022-12-28 version to fix build failure with Linux 6.1
Let's also drop local patch[0] that has been upstreamed.
[0]: dde7bddfdd
Fixes:
http://autobuild.buildroot.net/results/cc8/cc84b5f62ca59572f0f52086f157acc0409c03f5/
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
5a21d2f356
commit
030cbe3703
@ -1,47 +0,0 @@
|
||||
From dde7bddfddddb7212f2d9671391e2096d770c449 Mon Sep 17 00:00:00 2001
|
||||
From: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
||||
Date: Sun, 23 Oct 2022 22:57:41 +0200
|
||||
Subject: [PATCH] Fix build failure on PowerPc architecture
|
||||
|
||||
In PowerPc Linux only get_ra() exists[0] and conflicts with local get_ra()
|
||||
that has a completely different purpose. So let's rename local get_ra()
|
||||
to wifi_get_ra() to make it different from Linux's get_ra().
|
||||
|
||||
[0]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/powerpc/include/asm/disassemble.h#n49
|
||||
|
||||
Upstream: https://github.com/lwfinger/rtl8723bu/pull/192
|
||||
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
||||
---
|
||||
hal/rtl8723bu_recv.c | 2 +-
|
||||
include/wifi.h | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/hal/rtl8723bu_recv.c b/hal/rtl8723bu_recv.c
|
||||
index a2fc82b..39e5044 100644
|
||||
--- a/hal/rtl8723bu_recv.c
|
||||
+++ b/hal/rtl8723bu_recv.c
|
||||
@@ -288,7 +288,7 @@ void update_recvframe_phyinfo(
|
||||
!pattrib->icv_err && !pattrib->crc_err &&
|
||||
_rtw_memcmp(get_hdr_bssid(wlanhdr), get_bssid(&padapter->mlmepriv), ETH_ALEN));
|
||||
|
||||
- pkt_info.bPacketToSelf = pkt_info.bPacketMatchBSSID && (_rtw_memcmp(get_ra(wlanhdr), myid(&padapter->eeprompriv), ETH_ALEN));
|
||||
+ pkt_info.bPacketToSelf = pkt_info.bPacketMatchBSSID && (_rtw_memcmp(wifi_get_ra(wlanhdr), myid(&padapter->eeprompriv), ETH_ALEN));
|
||||
|
||||
pkt_info.bPacketBeacon = pkt_info.bPacketMatchBSSID && (GetFrameSubType(wlanhdr) == WIFI_BEACON);
|
||||
sa = get_ta(wlanhdr);
|
||||
diff --git a/include/wifi.h b/include/wifi.h
|
||||
index 5dc32eb..23578cc 100644
|
||||
--- a/include/wifi.h
|
||||
+++ b/include/wifi.h
|
||||
@@ -373,7 +373,7 @@ __inline static int IS_MCAST(unsigned char *da)
|
||||
return _FALSE;
|
||||
}
|
||||
|
||||
-__inline static unsigned char * get_ra(unsigned char *pframe)
|
||||
+__inline static unsigned char * wifi_get_ra(unsigned char *pframe)
|
||||
{
|
||||
unsigned char *ra;
|
||||
ra = GetAddr1Ptr(pframe);
|
||||
--
|
||||
2.34.1
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 07fece152704f4b5dbd0fd3af842816f95824317f3158fea774f15a6eddac009 rtl8723bu-d79a676a8d3f0bb6ac8af126689c6ac6869cb6f2.tar.gz
|
||||
sha256 21372b654886c6d100f46636d7807428698bd618e00db1b8b49cfc3037e46d10 rtl8723bu-f1dbe1c8ccc2c5b2cbeb84da6b9f0e547a84a255.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RTL8723BU_VERSION = d79a676a8d3f0bb6ac8af126689c6ac6869cb6f2
|
||||
RTL8723BU_VERSION = f1dbe1c8ccc2c5b2cbeb84da6b9f0e547a84a255
|
||||
RTL8723BU_SITE = $(call github,lwfinger,rtl8723bu,$(RTL8723BU_VERSION))
|
||||
RTL8723BU_LICENSE = GPL-2.0, proprietary (*.bin firmware blobs)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user