From: Laurent Pinchart <[email protected]>

Prepare for DT bindings by using more appropriate names for the input
clocks.

Note that all LDDCKR_ICKSEL_* definitions but the one for the bus clock
are valid only for SH7724, so the clock selection code needs to be
updated when extending clock support to other SoCs.

Signed-off-by: Laurent Pinchart <[email protected]>
[geert: Add note]
Signed-off-by: Geert Uytterhoeven <[email protected]>
Reviewed-by: Sui Jingfeng <[email protected]>
---
v4:
  - No changes,

v3:
  - No changes,

v2:
  - Add Reviewed-by.
---
 drivers/gpu/drm/renesas/shmobile/shmob_drm_drv.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/renesas/shmobile/shmob_drm_drv.c 
b/drivers/gpu/drm/renesas/shmobile/shmob_drm_drv.c
index 8a685bfc8e08e7d1..5f3061e88e215dcc 100644
--- a/drivers/gpu/drm/renesas/shmobile/shmob_drm_drv.c
+++ b/drivers/gpu/drm/renesas/shmobile/shmob_drm_drv.c
@@ -74,15 +74,15 @@ static int shmob_drm_setup_clocks(struct shmob_drm_device 
*sdev,
 
        switch (clksrc) {
        case SHMOB_DRM_CLK_BUS:
-               clkname = "bus_clk";
+               clkname = "fck";
                sdev->lddckr = LDDCKR_ICKSEL_BUS;
                break;
        case SHMOB_DRM_CLK_PERIPHERAL:
-               clkname = "peripheral_clk";
+               clkname = "media";
                sdev->lddckr = LDDCKR_ICKSEL_MIPI;
                break;
        case SHMOB_DRM_CLK_EXTERNAL:
-               clkname = NULL;
+               clkname = "lclk";
                sdev->lddckr = LDDCKR_ICKSEL_HDMI;
                break;
        default:
-- 
2.34.1

Reply via email to