forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: hostapd: fix this patch to cause some wireless driver DFS detection (coolsnowwolf#9997) kernel: bump 5.19 to 5.19.4 (coolsnowwolf#9995) kernel: bump 5.15 to 5.15.62 (coolsnowwolf#9994) ath11k: add wcn685x wifi6e ap mode and firmware support
- Loading branch information
Showing
15 changed files
with
61 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-5.15 = .60 | ||
LINUX_KERNEL_HASH-5.15.60 = 2d9545f7c96faffd8407522011b9533adefd1360118494dfb6c862f2f15e237a | ||
LINUX_VERSION-5.15 = .62 | ||
LINUX_KERNEL_HASH-5.15.62 = 06817cde8e57cdb6dbf20eaa5122fee110024f6e8b783799c98cb65dc753f141 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-5.19 = .3 | ||
LINUX_KERNEL_HASH-5.19.3 = 513bd672066f5fb22e5739aae3eed60c75c4accc9ba365d1060c4e4225442721 | ||
LINUX_VERSION-5.19 = .4 | ||
LINUX_KERNEL_HASH-5.19.4 = a9214b97085af98dfcaaa8c2e8eff4858c1d53dccd6c58931cf7b0455ff9bf87 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1298,12 +1298,14 @@ $(eval $(call KernelPackage,qcom-qmi-helpers)) | |
define KernelPackage/mhi | ||
SUBMENU:=$(OTHER_MENU) | ||
TITLE:=Modem Host Interface (MHI) bus | ||
DEPENDS:=@LINUX_5_15 | ||
DEPENDS:=@(LINUX_5_15||LINUX_5_19) | ||
KCONFIG:=CONFIG_MHI_BUS \ | ||
CONFIG_MHI_BUS_DEBUG=y \ | ||
CONFIG_MHI_BUS_PCI_GENERIC=n \ | ||
CONFIG_MHI_NET=n | ||
FILES:=$(LINUX_DIR)/drivers/bus/mhi/core/mhi.ko | ||
FILES:= \ | ||
$(LINUX_DIR)/drivers/bus/mhi/core/[email protected] \ | ||
$(LINUX_DIR)/drivers/bus/mhi/host/[email protected] | ||
AUTOLOAD:=$(call AutoProbe,mhi) | ||
endef | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Signed-off-by: John Crispin <[email protected]> | |
|
||
#include "gpiolib.h" | ||
#include "gpiolib-of.h" | ||
@@ -1057,3 +1059,72 @@ void of_gpio_dev_init(struct gpio_chip * | ||
@@ -1059,3 +1061,72 @@ void of_gpio_dev_init(struct gpio_chip * | ||
else | ||
gc->of_node = gdev->dev.of_node; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
+MODULE_LICENSE("GPL"); | ||
--- a/kernel/sched/core.c | ||
+++ b/kernel/sched/core.c | ||
@@ -4175,6 +4175,7 @@ int wake_up_state(struct task_struct *p, | ||
@@ -4184,6 +4184,7 @@ int wake_up_state(struct task_struct *p, | ||
{ | ||
return try_to_wake_up(p, state, 0); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
buf_printf(b, "\n"); | ||
buf_printf(b, "__visible struct module __this_module\n"); | ||
buf_printf(b, "__section(\".gnu.linkonce.this_module\") = {\n"); | ||
@@ -2285,11 +2289,13 @@ static void add_depends(struct buffer *b | ||
@@ -2283,11 +2287,13 @@ static void add_depends(struct buffer *b | ||
|
||
static void add_srcversion(struct buffer *b, struct module *mod) | ||
{ | ||
|
@@ -162,7 +162,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
} | ||
|
||
static void write_buf(struct buffer *b, const char *fname) | ||
@@ -2375,7 +2381,9 @@ static void write_mod_c_file(struct modu | ||
@@ -2373,7 +2379,9 @@ static void write_mod_c_file(struct modu | ||
add_exported_symbols(&buf, mod); | ||
add_versions(&buf, mod); | ||
add_depends(&buf, mod); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ Signed-off-by: Alexandros C. Couloumbis <[email protected]> | |
|
||
--- a/arch/powerpc/Makefile | ||
+++ b/arch/powerpc/Makefile | ||
@@ -59,19 +59,6 @@ machine-$(CONFIG_PPC64) += 64 | ||
@@ -42,19 +42,6 @@ machine-$(CONFIG_PPC64) += 64 | ||
machine-$(CONFIG_CPU_LITTLE_ENDIAN) += le | ||
UTS_MACHINE := $(subst $(space),,$(machine-y)) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/drivers/mtd/parsers/redboot.c | ||
+++ b/drivers/mtd/parsers/redboot.c | ||
@@ -277,14 +277,21 @@ nogood: | ||
@@ -278,14 +278,21 @@ nogood: | ||
#endif | ||
names += strlen(names) + 1; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
#endif /* __LINUX_USB_PCI_QUIRKS_H */ | ||
--- a/include/linux/usb/hcd.h | ||
+++ b/include/linux/usb/hcd.h | ||
@@ -497,7 +497,14 @@ extern int usb_hcd_pci_probe(struct pci_ | ||
@@ -498,7 +498,14 @@ extern int usb_hcd_pci_probe(struct pci_ | ||
extern void usb_hcd_pci_remove(struct pci_dev *dev); | ||
extern void usb_hcd_pci_shutdown(struct pci_dev *dev); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ Signed-off-by: Imre Kaloz <[email protected]> | |
help | ||
--- a/init/main.c | ||
+++ b/init/main.c | ||
@@ -615,6 +615,29 @@ static inline void setup_nr_cpu_ids(void | ||
@@ -616,6 +616,29 @@ static inline void setup_nr_cpu_ids(void | ||
static inline void smp_prepare_cpus(unsigned int maxcpus) { } | ||
#endif | ||
|
||
|
@@ -61,7 +61,7 @@ Signed-off-by: Imre Kaloz <[email protected]> | |
/* | ||
* We need to store the untouched command line for future reference. | ||
* We also need to store the touched command line since the parameter | ||
@@ -955,6 +978,7 @@ asmlinkage __visible void __init __no_sa | ||
@@ -956,6 +979,7 @@ asmlinkage __visible void __init __no_sa | ||
pr_notice("%s", linux_banner); | ||
early_security_init(); | ||
setup_arch(&command_line); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ Signed-off-by: Gabor Juhos <[email protected]> | |
|
||
--- a/drivers/net/phy/phy_device.c | ||
+++ b/drivers/net/phy/phy_device.c | ||
@@ -1738,6 +1738,9 @@ void phy_detach(struct phy_device *phyde | ||
@@ -1744,6 +1744,9 @@ void phy_detach(struct phy_device *phyde | ||
struct module *ndev_owner = NULL; | ||
struct mii_bus *bus; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters