]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/rockchip: cdn-dp: return error code when clk_get_rate failed
authorChris Zhong <zyw@rock-chips.com>
Wed, 8 Mar 2017 02:27:55 +0000 (10:27 +0800)
committerSean Paul <seanpaul@chromium.org>
Mon, 13 Mar 2017 19:59:10 +0000 (15:59 -0400)
The clk_get_rate return 0 if something goes wrong, so it can never be
less then zero, the ret should be set a error code, otherwise the
cdn_dp_clk_enable will return 0 when it failed at clk_get_rate.
In addition, clk_get_rate() returns an "unsigned long", so use
"unsigned long" instead of "u32" is better.

Signed-off-by: Chris Zhong <zyw@rock-chips.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: http://patchwork.freedesktop.org/patch/msgid/1488940077-22297-2-git-send-email-zyw@rock-chips.com
drivers/gpu/drm/rockchip/cdn-dp-core.c
drivers/gpu/drm/rockchip/cdn-dp-reg.c
drivers/gpu/drm/rockchip/cdn-dp-reg.h

index 9ab67a670885fdafa91a575fd3a602394cc4d2e4..869976b591f8f43729f687342b0ac2e42aeb7894 100644 (file)
@@ -94,7 +94,7 @@ static int cdn_dp_grf_write(struct cdn_dp_device *dp,
 static int cdn_dp_clk_enable(struct cdn_dp_device *dp)
 {
        int ret;
-       u32 rate;
+       unsigned long rate;
 
        ret = clk_prepare_enable(dp->pclk);
        if (ret < 0) {
@@ -123,7 +123,8 @@ static int cdn_dp_clk_enable(struct cdn_dp_device *dp)
 
        rate = clk_get_rate(dp->core_clk);
        if (!rate) {
-               DRM_DEV_ERROR(dp->dev, "get clk rate failed: %d\n", rate);
+               DRM_DEV_ERROR(dp->dev, "get clk rate failed\n");
+               ret = -EINVAL;
                goto err_set_rate;
        }
 
index 319dbbaa36099460313f789a1fd6758a12d4bb18..963d8abec463eb74660bbe356372e184e71236cc 100644 (file)
@@ -29,7 +29,7 @@
 #define LINK_TRAINING_RETRY_MS         20
 #define LINK_TRAINING_TIMEOUT_MS       500
 
-void cdn_dp_set_fw_clk(struct cdn_dp_device *dp, u32 clk)
+void cdn_dp_set_fw_clk(struct cdn_dp_device *dp, unsigned long clk)
 {
        writel(clk / 1000000, dp->regs + SW_CLK_H);
 }
index b5f21532469429e8022b929d3c565daf18745333..3507be3e0e12215b963ce76bc2cdde94fb482d37 100644 (file)
@@ -462,7 +462,7 @@ enum vic_bt_type {
 
 void cdn_dp_clock_reset(struct cdn_dp_device *dp);
 
-void cdn_dp_set_fw_clk(struct cdn_dp_device *dp, u32 clk);
+void cdn_dp_set_fw_clk(struct cdn_dp_device *dp, unsigned long clk);
 int cdn_dp_load_firmware(struct cdn_dp_device *dp, const u32 *i_mem,
                         u32 i_size, const u32 *d_mem, u32 d_size);
 int cdn_dp_set_firmware_active(struct cdn_dp_device *dp, bool enable);