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: kernel: bump 5.19 to 5.19.11 (coolsnowwolf#10172) kernel: bump 5.10 to 5.10.145 (coolsnowwolf#10173) kernel: bump 5.15 to 5.15.70 (coolsnowwolf#10174) meson: add support for Thunder OneCloud meson: fixes support for Amlogic S805
- Loading branch information
Showing
242 changed files
with
1,218 additions
and
1,718 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.10 = .143 | ||
LINUX_KERNEL_HASH-5.10.143 = fa2c9edef272d39dca52e057e1d41433cf1b6ab6a00d24a00333c0b735054e91 | ||
LINUX_VERSION-5.10 = .145 | ||
LINUX_KERNEL_HASH-5.10.145 = fc5990f3e57479369eaf193bd7760b84f26d2b670c2d88e473101cb679c5ac61 |
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 = .69 | ||
LINUX_KERNEL_HASH-5.15.69 = e32839ca761e5251f25708f7939b37b101d28fc29515a97bfc0c838a21efdf34 | ||
LINUX_VERSION-5.15 = .70 | ||
LINUX_KERNEL_HASH-5.15.70 = 1a7c26f0253407bb222786c8cbf2ee6235acebe8ea641fe0bc2360acce970d76 |
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 = .10 | ||
LINUX_KERNEL_HASH-5.19.10 = 67dab932e85f9b9062ced666c8ea888230a1dadfd624b05aead6b6ebc6d3bdd5 | ||
LINUX_VERSION-5.19 = .11 | ||
LINUX_KERNEL_HASH-5.19.11 = 5554d2f90b806bb3454fcf3432882cf85077d660a89db5a4e8d7375271e3d973 |
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 |
---|---|---|
|
@@ -63,7 +63,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
|
||
--- a/drivers/net/dsa/mv88e6xxx/chip.c | ||
+++ b/drivers/net/dsa/mv88e6xxx/chip.c | ||
@@ -1586,6 +1586,26 @@ static int mv88e6xxx_port_check_hw_vlan( | ||
@@ -1590,6 +1590,26 @@ static int mv88e6xxx_port_check_hw_vlan( | ||
return 0; | ||
} | ||
|
||
|
@@ -90,7 +90,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
static int mv88e6xxx_port_vlan_filtering(struct dsa_switch *ds, int port, | ||
bool vlan_filtering, | ||
struct switchdev_trans *trans) | ||
@@ -1599,7 +1619,16 @@ static int mv88e6xxx_port_vlan_filtering | ||
@@ -1603,7 +1623,16 @@ static int mv88e6xxx_port_vlan_filtering | ||
return chip->info->max_vid ? 0 : -EOPNOTSUPP; | ||
|
||
mv88e6xxx_reg_lock(chip); | ||
|
@@ -107,7 +107,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
mv88e6xxx_reg_unlock(chip); | ||
|
||
return err; | ||
@@ -1982,8 +2011,10 @@ static void mv88e6xxx_port_vlan_add(stru | ||
@@ -1986,8 +2015,10 @@ static void mv88e6xxx_port_vlan_add(stru | ||
struct mv88e6xxx_chip *chip = ds->priv; | ||
bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; | ||
bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID; | ||
|
@@ -118,7 +118,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
u16 vid; | ||
|
||
if (!chip->info->max_vid) | ||
@@ -2008,9 +2039,23 @@ static void mv88e6xxx_port_vlan_add(stru | ||
@@ -2012,9 +2043,23 @@ static void mv88e6xxx_port_vlan_add(stru | ||
dev_err(ds->dev, "p%d: failed to add VLAN %d%c\n", port, | ||
vid, untagged ? 'u' : 't'); | ||
|
||
|
@@ -145,15 +145,15 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
|
||
mv88e6xxx_reg_unlock(chip); | ||
} | ||
@@ -2061,6 +2106,7 @@ static int mv88e6xxx_port_vlan_del(struc | ||
@@ -2065,6 +2110,7 @@ static int mv88e6xxx_port_vlan_del(struc | ||
const struct switchdev_obj_port_vlan *vlan) | ||
{ | ||
struct mv88e6xxx_chip *chip = ds->priv; | ||
+ struct mv88e6xxx_port *p = &chip->ports[port]; | ||
u16 pvid, vid; | ||
int err = 0; | ||
|
||
@@ -2079,7 +2125,9 @@ static int mv88e6xxx_port_vlan_del(struc | ||
@@ -2083,7 +2129,9 @@ static int mv88e6xxx_port_vlan_del(struc | ||
goto unlock; | ||
|
||
if (vid == pvid) { | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -523,7 +523,7 @@ KBUILD_LDFLAGS_MODULE := | ||
@@ -525,7 +525,7 @@ KBUILD_LDFLAGS_MODULE := | ||
KBUILD_LDFLAGS := | ||
CLANG_FLAGS := | ||
|
||
|
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ Signed-off-by: Srinivas Kandagatla <[email protected]> | |
|
||
--- a/drivers/mtd/mtdcore.c | ||
+++ b/drivers/mtd/mtdcore.c | ||
@@ -1227,6 +1227,34 @@ int __get_mtd_device(struct mtd_info *mt | ||
@@ -1166,6 +1166,34 @@ int __get_mtd_device(struct mtd_info *mt | ||
EXPORT_SYMBOL_GPL(__get_mtd_device); | ||
|
||
/** | ||
|
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 |
---|---|---|
|
@@ -530,7 +530,7 @@ Signed-off-by: David S. Miller <[email protected]> | |
static int | ||
--- a/drivers/net/dsa/xrs700x/xrs700x.c | ||
+++ b/drivers/net/dsa/xrs700x/xrs700x.c | ||
@@ -456,7 +456,7 @@ static void xrs700x_phylink_validate(str | ||
@@ -457,7 +457,7 @@ static void xrs700x_phylink_validate(str | ||
phylink_set(mask, 1000baseT_Full); | ||
break; | ||
default: | ||
|
@@ -539,7 +539,7 @@ Signed-off-by: David S. Miller <[email protected]> | |
dev_err(ds->dev, "Unsupported port: %i\n", port); | ||
return; | ||
} | ||
@@ -467,10 +467,8 @@ static void xrs700x_phylink_validate(str | ||
@@ -468,10 +468,8 @@ static void xrs700x_phylink_validate(str | ||
phylink_set(mask, 10baseT_Full); | ||
phylink_set(mask, 100baseT_Full); | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
target/linux/generic/hack-5.10/710-net-dsa-mv88e6xxx-default-VID-1.patch
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
2 changes: 1 addition & 1 deletion
2
target/linux/generic/hack-5.10/711-net-dsa-mv88e6xxx-disable-ATU-violation.patch
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 |
---|---|---|
|
@@ -83,7 +83,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
EXPORT_SYMBOL(default_qdisc_ops); | ||
|
||
static void qdisc_maybe_clear_missed(struct Qdisc *q, | ||
@@ -1088,12 +1088,12 @@ static void attach_one_default_qdisc(str | ||
@@ -1103,12 +1103,12 @@ static void attach_one_default_qdisc(str | ||
void *_unused) | ||
{ | ||
struct Qdisc *qdisc; | ||
|
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,9 +1,19 @@ | ||
From f81700b6bb2eda3756247bce472d8eaf6f466f61 Mon Sep 17 00:00:00 2001 | ||
From: OpenWrt community <[email protected]> | ||
Date: Wed, 13 Jul 2022 13:49:26 +0200 | ||
Subject: [PATCH] net/usb/qmi_wwan: add MeigLink modem support | ||
|
||
--- | ||
drivers/net/usb/qmi_wwan.c | 1 + | ||
drivers/usb/serial/option.c | 7 +++++++ | ||
2 files changed, 8 insertions(+) | ||
|
||
--- a/drivers/net/usb/qmi_wwan.c | ||
+++ b/drivers/net/usb/qmi_wwan.c | ||
@@ -1085,6 +1085,7 @@ static const struct usb_device_id produc | ||
{QMI_MATCH_FF_FF_FF(0x2c7c, 0x0512)}, /* Quectel EG12/EM12 */ | ||
@@ -1086,6 +1086,7 @@ static const struct usb_device_id produc | ||
{QMI_MATCH_FF_FF_FF(0x2c7c, 0x0620)}, /* Quectel EM160R-GL */ | ||
{QMI_MATCH_FF_FF_FF(0x2c7c, 0x0800)}, /* Quectel RM500Q-GL */ | ||
{QMI_MATCH_FF_FF_FF(0x2c7c, 0x0801)}, /* Quectel RM520N */ | ||
+ {QMI_MATCH_FF_FF_FF(0x05c6, 0xf601)}, /* MeigLink SLM750 */ | ||
|
||
/* 3. Combined interface devices matching on interface number */ | ||
|
@@ -19,7 +29,7 @@ | |
|
||
#define QUECTEL_VENDOR_ID 0x2c7c | ||
/* These Quectel products use Quectel's vendor ID */ | ||
@@ -1133,6 +1135,11 @@ static const struct usb_device_id option | ||
@@ -1140,6 +1142,11 @@ static const struct usb_device_id option | ||
{ USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EG95, 0xff, 0, 0) }, | ||
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_BG96), | ||
.driver_info = RSVD(4) }, | ||
|
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 |
---|---|---|
|
@@ -93,7 +93,7 @@ Signed-off-by: Zhi Chen <[email protected]> | |
#if defined(CONFIG_NF_CONNTRACK_LABELS) | ||
--- a/net/netfilter/Kconfig | ||
+++ b/net/netfilter/Kconfig | ||
@@ -151,6 +151,14 @@ config NF_CONNTRACK_EVENTS | ||
@@ -150,6 +150,14 @@ config NF_CONNTRACK_EVENTS | ||
|
||
If unsure, say `N'. | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ Signed-off-by: DENG Qingfang <[email protected]> | |
|
||
--- a/drivers/net/dsa/mv88e6xxx/chip.c | ||
+++ b/drivers/net/dsa/mv88e6xxx/chip.c | ||
@@ -2917,6 +2917,7 @@ static int mv88e6xxx_setup(struct dsa_sw | ||
@@ -2921,6 +2921,7 @@ static int mv88e6xxx_setup(struct dsa_sw | ||
|
||
chip->ds = ds; | ||
ds->slave_mii_bus = mv88e6xxx_default_mdio_bus(chip); | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ Signed-off-by: Tobias Waldekranz <[email protected]> | |
|
||
--- a/drivers/net/dsa/mv88e6xxx/chip.c | ||
+++ b/drivers/net/dsa/mv88e6xxx/chip.c | ||
@@ -5486,6 +5486,7 @@ static int mv88e6xxx_register_switch(str | ||
@@ -5490,6 +5490,7 @@ static int mv88e6xxx_register_switch(str | ||
ds->ops = &mv88e6xxx_switch_ops; | ||
ds->ageing_time_min = chip->info->age_time_coeff; | ||
ds->ageing_time_max = chip->info->age_time_coeff * U8_MAX; | ||
|
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 |
---|---|---|
|
@@ -71,7 +71,7 @@ Signed-off-by: Tobias Wolf <[email protected]> | |
|
||
--- a/mm/page_alloc.c | ||
+++ b/mm/page_alloc.c | ||
@@ -7556,7 +7556,7 @@ static void __init alloc_node_mem_map(st | ||
@@ -7557,7 +7557,7 @@ static void __init alloc_node_mem_map(st | ||
if (pgdat == NODE_DATA(0)) { | ||
mem_map = NODE_DATA(0)->node_mem_map; | ||
if (page_to_pfn(mem_map) != pgdat->node_start_pfn) | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -759,11 +759,11 @@ KBUILD_CFLAGS += $(call cc-disable-warni | ||
@@ -762,11 +762,11 @@ KBUILD_CFLAGS += $(call cc-disable-warni | ||
KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member) | ||
|
||
ifdef CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE | ||
|
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 |
---|---|---|
|
@@ -106,7 +106,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
} | ||
--- a/scripts/link-vmlinux.sh | ||
+++ b/scripts/link-vmlinux.sh | ||
@@ -266,6 +266,10 @@ kallsyms() | ||
@@ -257,6 +257,10 @@ kallsyms() | ||
kallsymopt="${kallsymopt} --base-relative" | ||
fi | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ Reviewed-by: Miquel Raynal <[email protected]> | |
|
||
--- a/drivers/mtd/mtdcore.c | ||
+++ b/drivers/mtd/mtdcore.c | ||
@@ -1203,6 +1203,44 @@ out_unlock: | ||
@@ -1231,6 +1231,44 @@ out_unlock: | ||
} | ||
EXPORT_SYMBOL_GPL(get_mtd_device_nm); | ||
|
||
|
@@ -64,9 +64,9 @@ Reviewed-by: Miquel Raynal <[email protected]> | |
mutex_lock(&mtd_table_mutex); | ||
--- a/include/linux/mtd/mtd.h | ||
+++ b/include/linux/mtd/mtd.h | ||
@@ -703,6 +703,8 @@ extern struct mtd_info *get_mtd_device(s | ||
extern int __get_mtd_device(struct mtd_info *mtd); | ||
@@ -704,6 +704,8 @@ extern int __get_mtd_device(struct mtd_i | ||
extern void __put_mtd_device(struct mtd_info *mtd); | ||
extern struct mtd_info *of_get_mtd_device_by_node(struct device_node *np); | ||
extern struct mtd_info *get_mtd_device_nm(const char *name); | ||
+extern struct mtd_info *get_mtd_device_by_node( | ||
+ const struct device_node *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 |
---|---|---|
|
@@ -14,7 +14,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/drivers/net/ethernet/mediatek/mtk_ppe_offload.c | ||
+++ b/drivers/net/ethernet/mediatek/mtk_ppe_offload.c | ||
@@ -234,6 +234,9 @@ mtk_flow_offload_replace(struct mtk_eth | ||
@@ -233,6 +233,9 @@ mtk_flow_offload_replace(struct mtk_eth | ||
if (rhashtable_lookup(ð->flow_table, &f->cookie, mtk_flow_ht_params)) | ||
return -EEXIST; | ||
|
||
|
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 |
---|---|---|
|
@@ -49,7 +49,7 @@ Signed-off-by: David S. Miller <[email protected]> | |
|
||
--- a/drivers/net/usb/qmi_wwan.c | ||
+++ b/drivers/net/usb/qmi_wwan.c | ||
@@ -1313,6 +1313,7 @@ static const struct usb_device_id produc | ||
@@ -1314,6 +1314,7 @@ static const struct usb_device_id produc | ||
{QMI_FIXED_INTF(0x19d2, 0x1426, 2)}, /* ZTE MF91 */ | ||
{QMI_FIXED_INTF(0x19d2, 0x1428, 2)}, /* Telewell TW-LTE 4G v2 */ | ||
{QMI_FIXED_INTF(0x19d2, 0x1432, 3)}, /* ZTE ME3620 */ | ||
|
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 |
---|---|---|
|
@@ -13,11 +13,9 @@ Link: https://lore.kernel.org/r/[email protected] | |
arch/arm64/boot/dts/qcom/ipq8074.dtsi | 19 +++++++++++++++++++ | ||
1 file changed, 19 insertions(+) | ||
|
||
diff --git a/arch/arm64/boot/dts/qcom/ipq8074.dtsi b/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
index 6b9ac0550490..c37de90616fa 100644 | ||
--- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
+++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
@@ -293,6 +293,25 @@ gcc: gcc@1800000 { | ||
@@ -293,6 +293,25 @@ | ||
#reset-cells = <0x1>; | ||
}; | ||
|
||
|
@@ -43,6 +41,3 @@ index 6b9ac0550490..c37de90616fa 100644 | |
sdhc_1: sdhci@7824900 { | ||
compatible = "qcom,sdhci-msm-v4"; | ||
reg = <0x7824900 0x500>, <0x7824000 0x800>; | ||
-- | ||
2.37.2 | ||
|
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 |
---|---|---|
|
@@ -14,11 +14,9 @@ Link: https://lore.kernel.org/r/[email protected] | |
arch/arm64/boot/dts/qcom/ipq8074.dtsi | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/arch/arm64/boot/dts/qcom/ipq8074.dtsi b/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
index c37de90616fa..5acbacecbf4f 100644 | ||
--- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
+++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
@@ -212,7 +212,7 @@ prng: rng@e3000 { | ||
@@ -212,7 +212,7 @@ | ||
status = "disabled"; | ||
}; | ||
|
||
|
@@ -27,6 +25,3 @@ index c37de90616fa..5acbacecbf4f 100644 | |
compatible = "qcom,bam-v1.7.0"; | ||
reg = <0x00704000 0x20000>; | ||
interrupts = <GIC_SPI 207 IRQ_TYPE_LEVEL_HIGH>; | ||
-- | ||
2.37.2 | ||
|
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 |
---|---|---|
|
@@ -14,11 +14,9 @@ Link: https://lore.kernel.org/r/[email protected] | |
arch/arm64/boot/dts/qcom/ipq8074.dtsi | 15 +++++++++++++++ | ||
1 file changed, 15 insertions(+) | ||
|
||
diff --git a/arch/arm64/boot/dts/qcom/ipq8074.dtsi b/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
index 5acbacecbf4f..9e700963a1e3 100644 | ||
--- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
+++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi | ||
@@ -430,6 +430,21 @@ blsp1_i2c3: i2c@78b7000 { | ||
@@ -430,6 +430,21 @@ | ||
status = "disabled"; | ||
}; | ||
|
||
|
@@ -40,6 +38,3 @@ index 5acbacecbf4f..9e700963a1e3 100644 | |
blsp1_i2c6: i2c@78ba000 { | ||
compatible = "qcom,i2c-qup-v2.2.1"; | ||
#address-cells = <1>; | ||
-- | ||
2.37.2 | ||
|
Oops, something went wrong.