mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
linux (RPi): update to 6.6.14-1d52276
Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
parent
7bc963e4f3
commit
39edf51507
@ -23,8 +23,8 @@ case "${LINUX}" in
|
||||
PKG_PATCH_DIRS="default"
|
||||
;;
|
||||
raspberrypi)
|
||||
PKG_VERSION="02b507a4a54f73b85a28999176ed975867b7d6b6" # 6.6.13
|
||||
PKG_SHA256="5289562691b37692572e3e682221b28bd18616494447ad8452a73f3cf149c192"
|
||||
PKG_VERSION="1d5227687b447c2afa2f01018568322278842510" # 6.6.14
|
||||
PKG_SHA256="5579aedbce4c0b7855891ce78203d7eeedd23122c3013b45c16e18d2d1086aca"
|
||||
PKG_URL="https://github.com/raspberrypi/linux/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_SOURCE_NAME="linux-${LINUX}-${PKG_VERSION}.tar.gz"
|
||||
;;
|
||||
|
@ -1,37 +0,0 @@
|
||||
From 53ee0b3b99edc6a47096bffef15695f5a895386f Mon Sep 17 00:00:00 2001
|
||||
From: Chih-Kang Chang <gary.chang@realtek.com>
|
||||
Date: Fri, 3 Nov 2023 10:08:51 +0800
|
||||
Subject: [PATCH] wifi: rtw88: fix RX filter in FIF_ALLMULTI flag
|
||||
|
||||
The broadcast packets will be filtered in the FIF_ALLMULTI flag in
|
||||
the original code, which causes beacon packets to be filtered out
|
||||
and disconnection. Therefore, we fix it.
|
||||
|
||||
Fixes: e3037485c68e ("rtw88: new Realtek 802.11ac driver")
|
||||
Signed-off-by: Chih-Kang Chang <gary.chang@realtek.com>
|
||||
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
|
||||
Signed-off-by: Kalle Valo <kvalo@kernel.org>
|
||||
Link: https://lore.kernel.org/r/20231103020851.102238-1-pkshih@realtek.com
|
||||
---
|
||||
drivers/net/wireless/realtek/rtw88/mac80211.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/drivers/net/wireless/realtek/rtw88/mac80211.c b/drivers/net/wireless/realtek/rtw88/mac80211.c
|
||||
index a99b53d44267..d8d68f16014e 100644
|
||||
--- a/drivers/net/wireless/realtek/rtw88/mac80211.c
|
||||
+++ b/drivers/net/wireless/realtek/rtw88/mac80211.c
|
||||
@@ -280,9 +280,9 @@ static void rtw_ops_configure_filter(struct ieee80211_hw *hw,
|
||||
|
||||
if (changed_flags & FIF_ALLMULTI) {
|
||||
if (*new_flags & FIF_ALLMULTI)
|
||||
- rtwdev->hal.rcr |= BIT_AM | BIT_AB;
|
||||
+ rtwdev->hal.rcr |= BIT_AM;
|
||||
else
|
||||
- rtwdev->hal.rcr &= ~(BIT_AM | BIT_AB);
|
||||
+ rtwdev->hal.rcr &= ~(BIT_AM);
|
||||
}
|
||||
if (changed_flags & FIF_FCSFAIL) {
|
||||
if (*new_flags & FIF_FCSFAIL)
|
||||
--
|
||||
2.34.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user