mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
24 lines
770 B
Diff
24 lines
770 B
Diff
From 2b08d751023fcdf3c37317dc769ce199ba361415 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Mon, 9 Sep 2019 23:50:44 +0100
|
|
Subject: [PATCH] v3d_drv: Allow clock retrieval by name
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|
---
|
|
drivers/gpu/drm/v3d/v3d_drv.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/v3d/v3d_drv.c
|
|
+++ b/drivers/gpu/drm/v3d/v3d_drv.c
|
|
@@ -300,7 +300,9 @@ static int v3d_platform_drm_probe(struct
|
|
}
|
|
}
|
|
|
|
- v3d->clk = devm_clk_get(dev, NULL);
|
|
+ v3d->clk = devm_clk_get(dev, "v3d");
|
|
+ if (!v3d->clk)
|
|
+ v3d->clk = devm_clk_get(dev, NULL);
|
|
if (IS_ERR_OR_NULL(v3d->clk)) {
|
|
if (PTR_ERR(v3d->clk) != -EPROBE_DEFER)
|
|
dev_err(dev, "Failed to get clock (%ld)\n", PTR_ERR(v3d->clk));
|