mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
a34255b795
Removed upstreamed: bcm27xx/patches-5.15/950-0446-drm-vc4-Fix-timings-for-VEC-modes.patch[1] Manually rebased: patches-5.15/950-0600-xhci-quirks-add-link-TRB-quirk-for-VL805.patch bcm27xx/patches-5.15/950-0606-usb-xhci-add-VLI_TRB_CACHE_BUG-quirk.patch bcm27xx/patches-5.15/950-0717-usb-xhci-add-a-quirk-for-Superspeed-bulk-OUT-transfe.patch bcm53xx/patches-5.15/180-usb-xhci-add-support-for-performing-fake-doorbell.patch All other patches automatically rebased 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.75&id=2810061452f9b748b096ad023d318690ca519aa3 Build system: x86_64 Build-tested: bcm2711/RPi4B, mt7622/RT3200 Run-tested: bcm2711/RPi4B, mt7622/RT3200 Signed-off-by: John Audia <therealgraysky@proton.me>
25 lines
859 B
Diff
25 lines
859 B
Diff
From 0f25b008cbdf679e61b3d06642cc3cc618e90880 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Thu, 8 Jul 2021 09:37:10 +0100
|
|
Subject: [PATCH] clk: bcm2835: Pass DT node to rpi_firmware_get
|
|
|
|
The fw_node pointer has already been retrieved, and using it allows
|
|
us to remove a downstream patch to the firmware driver.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/clk/bcm/clk-bcm2835.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/clk/bcm/clk-bcm2835.c
|
|
+++ b/drivers/clk/bcm/clk-bcm2835.c
|
|
@@ -2370,7 +2370,7 @@ static int bcm2835_clk_probe(struct plat
|
|
|
|
fw_node = of_parse_phandle(dev->of_node, "firmware", 0);
|
|
if (fw_node) {
|
|
- struct rpi_firmware *fw = rpi_firmware_get(NULL);
|
|
+ struct rpi_firmware *fw = rpi_firmware_get(fw_node);
|
|
if (!fw)
|
|
return -EPROBE_DEFER;
|
|
cprman->fw = fw;
|