diff options
| author | Jakub Kicinski <kuba@kernel.org> | 2025-09-18 02:12:46 +0300 | 
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2025-09-18 02:12:46 +0300 | 
| commit | 934da21f99c0222bf1dc1bed9fe2d76d0ea17486 (patch) | |
| tree | eab7a67af9da6538cdc13ddcc89fe37f55a2251b /net/rfkill/rfkill-gpio.c | |
| parent | d7995c2b91a5709a959f689b33655029814149b3 (diff) | |
| parent | b6f56a44e4c1014b08859dcf04ed246500e310e5 (diff) | |
| download | linux-934da21f99c0222bf1dc1bed9fe2d76d0ea17486.tar.xz | |
Merge tag 'wireless-2025-09-17' of https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless
Johannes Berg says:
====================
Just two fixes:
 - fix crash in rfkill due to uninitialized type_name
 - fix aggregation in iwlwifi 7000/8000 devices
* tag 'wireless-2025-09-17' of https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless:
  net: rfkill: gpio: Fix crash due to dereferencering uninitialized pointer
  wifi: iwlwifi: pcie: fix byte count table for some devices
====================
Link: https://patch.msgid.link/20250917105159.161583-3-johannes@sipsolutions.net
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/rfkill/rfkill-gpio.c')
| -rw-r--r-- | net/rfkill/rfkill-gpio.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rfkill/rfkill-gpio.c b/net/rfkill/rfkill-gpio.c index 41e657e97761..cf2dcec6ce5a 100644 --- a/net/rfkill/rfkill-gpio.c +++ b/net/rfkill/rfkill-gpio.c @@ -94,10 +94,10 @@ static const struct dmi_system_id rfkill_gpio_deny_table[] = {  static int rfkill_gpio_probe(struct platform_device *pdev)  {  	struct rfkill_gpio_data *rfkill; -	struct gpio_desc *gpio; +	const char *type_name = NULL;  	const char *name_property;  	const char *type_property; -	const char *type_name; +	struct gpio_desc *gpio;  	int ret;  	if (dmi_check_system(rfkill_gpio_deny_table))  | 
