Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GARDENA patches for 6.6 #1

Draft
wants to merge 24 commits into
base: gardena/linux-6.6.y
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3a9a01e
ARM: dts: microchip: at91sam9x5ek: Use DMA for DBGU serial port
easybe Jan 2, 2024
b8437a7
ARM: dts: microchip: gardena-smart-gateway: Use DMA for USART3
easybe Jan 2, 2024
d550090
drivers, misc: add U-Boot bootcount driver (enhanced version with sin…
hsdenx Feb 25, 2013
10847f7
net: ethernet: ralink: Import switch driver from OpenWrt
rettichschnidi Jun 16, 2021
f960b16
net: ethernet: ralink: mtk_eth_soc: Set DMA masks
stroese Dec 3, 2018
40b9fec
net: swconfig: adds openwrt switch layer
nbd168 Jul 7, 2017
79e1245
MIPS: ralink: mt7628a.dtsi: Add ethernet and ESW nodes
stroese May 23, 2019
ca752fd
MIPS: ralink: dts: gardena_smart_gateway_mt7688: Add ethernet and ESW…
stroese May 23, 2019
e339d52
MIPS: ralink: dts: gardena_smart_gateway_mt7688: Add bootcounter DT node
stroese Dec 18, 2018
a673cdc
tty/serial/8250: Call serial8250_enable_ms() from serial8250_config_p…
stroese Dec 22, 2018
97faf2c
gpio: mt7621: Assign base field in gpio_chip
rettichschnidi Jun 5, 2021
c736155
MIPS: dts: ralink: mt7628a: Fix sysc compatible string
easybe Jan 17, 2024
f2b93a2
MIPS: dts: ralink: mt7628a: Adapt to new clock/reset driver
easybe Jan 17, 2024
85066b9
MIPS: dts: ralink: mt7628a: Adapt to latest watchdog driver changes
easybe Jan 23, 2024
331177c
net: ethernet: ralink: Fix for Linux 6.5
easybe Jan 15, 2024
4ef9438
rtl8xxxu: Add debugfs entries for registers
mschiu77 Sep 30, 2021
5e490d1
rtl8xxxu: Handle BSS_CHANGED_TXPOWER/IEEE80211_CONF_CHANGE_POWER
Sep 29, 2020
b30fbff
rtl8xxxu: Handle mac80211 get_txpower
Sep 30, 2020
cadd4c1
rtl8xxxu: Enable RX STBC by default
Oct 7, 2020
d77f5d4
rtl8xxxu: Fix reported RX signal strength
Oct 20, 2020
e083200
rtl8xxxu: Raise error level of IQK failures
rettichschnidi Jan 23, 2022
bc62089
MIPS: ralink: dts: gardena_smart_gateway_mt7688: Fix power LED
easybe Oct 28, 2024
2a97824
ARM: dts: microchip: gardena-smart-gateway: Fix power LED
easybe Oct 30, 2024
cb59afc
wifi: rtl8xxxu: Enable AP mode for RTL8192CU (RTL8188CUS)
easybe Nov 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -5874,6 +5874,11 @@ void rtl8723au_rx_parse_phystats(struct rtl8xxxu_priv *priv,
rx_status->signal =
(phy_stats->cck_sig_qual_ofdm_pwdb_all >> 1) - 110;
}

// refers to rtlxxxx_rx_query_desc of rtlwifi/rtlxxxx/trx.c
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would do C style comments.

// needs to verify on RTL8723BU
if (priv->rtl_chip != RTL8723B && priv->rtl_chip != RTL8192E)
rx_status->signal += 10;
}

static void jaguar2_rx_parse_phystats_type0(struct rtl8xxxu_priv *priv,
Expand Down