mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
ac422c9788
Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.132 Removed upstreamed: bcm53xx/patches-5.15/037-v6.6-0006-ARM-dts-BCM53573-Add-cells-sizes-to-PCIe-node.patch[1] bcm53xx/patches-5.15/037-v6.6-0007-ARM-dts-BCM53573-Use-updated-spi-gpio-binding-proper.patch[2] bcm53xx/patches-5.15/037-v6.6-0008-ARM-dts-BCM5301X-Extend-RAM-to-full-256MB-for-Linksy.patch[3] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.132&id=b35f3ca1877e024887df205ede952863d65dad36 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.132&id=2840d9b9c8750be270fb1153ccd5b983cbb5d592 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.132&id=f086e859ddc252c32f0438edff241859c0f022ce Build system: x86_64 Build-tested: ramips/tplink_archer-a6-v3 Run-tested: ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From: Florian Fainelli <f.fainelli@gmail.com>
|
|
Subject: [PATCH v3 1/9] mtd: rawnand: brcmnand: Assign soc as early as possible
|
|
Date: Fri, 07 Jan 2022 10:46:06 -0800
|
|
Content-Type: text/plain; charset="utf-8"
|
|
|
|
In order to key off the brcmnand_probe() code in subsequent changes
|
|
depending upon ctrl->soc, assign that variable as early as possible,
|
|
instead of much later when we have checked that it is non-NULL.
|
|
|
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
|
---
|
|
drivers/mtd/nand/raw/brcmnand/brcmnand.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
--- a/drivers/mtd/nand/raw/brcmnand/brcmnand.c
|
|
+++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
|
|
@@ -3033,6 +3033,7 @@ int brcmnand_probe(struct platform_devic
|
|
|
|
dev_set_drvdata(dev, ctrl);
|
|
ctrl->dev = dev;
|
|
+ ctrl->soc = soc;
|
|
|
|
init_completion(&ctrl->done);
|
|
init_completion(&ctrl->dma_done);
|
|
@@ -3173,8 +3174,6 @@ int brcmnand_probe(struct platform_devic
|
|
* interesting ways
|
|
*/
|
|
if (soc) {
|
|
- ctrl->soc = soc;
|
|
-
|
|
ret = devm_request_irq(dev, ctrl->irq, brcmnand_irq, 0,
|
|
DRV_NAME, ctrl);
|
|
|