aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/exynos/exynos_hdmi.c
diff options
context:
space:
mode:
authorJoonyoung Shim <jy0922.shim@samsung.com>2012-04-05 07:49:22 -0400
committerInki Dae <inki.dae@samsung.com>2012-04-12 01:51:16 -0400
commitf9309d1bf220122659328040db47eede32514656 (patch)
treee611a15e167289b1496eefb612a7afeec9afebb3 /drivers/gpu/drm/exynos/exynos_hdmi.c
parent6b1c762da98fd0d475a4539f94541aec91a8de30 (diff)
drm/exynos: remove unnecessary type conversion of hdmi and mixer
When the void pointer type variable is assigned to the specific pointer type variable, don't need to do type conversion. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_hdmi.c')
-rw-r--r--drivers/gpu/drm/exynos/exynos_hdmi.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c
index 575a8cbd3533..0a713174535e 100644
--- a/drivers/gpu/drm/exynos/exynos_hdmi.c
+++ b/drivers/gpu/drm/exynos/exynos_hdmi.c
@@ -1194,7 +1194,7 @@ static int hdmi_conf_index(struct hdmi_context *hdata,
1194 1194
1195static bool hdmi_is_connected(void *ctx) 1195static bool hdmi_is_connected(void *ctx)
1196{ 1196{
1197 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1197 struct hdmi_context *hdata = ctx;
1198 u32 val = hdmi_reg_read(hdata, HDMI_HPD_STATUS); 1198 u32 val = hdmi_reg_read(hdata, HDMI_HPD_STATUS);
1199 1199
1200 if (val) 1200 if (val)
@@ -1207,7 +1207,7 @@ static int hdmi_get_edid(void *ctx, struct drm_connector *connector,
1207 u8 *edid, int len) 1207 u8 *edid, int len)
1208{ 1208{
1209 struct edid *raw_edid; 1209 struct edid *raw_edid;
1210 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1210 struct hdmi_context *hdata = ctx;
1211 1211
1212 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 1212 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
1213 1213
@@ -1275,7 +1275,7 @@ static int hdmi_v14_check_timing(struct fb_videomode *check_timing)
1275 1275
1276static int hdmi_check_timing(void *ctx, void *timing) 1276static int hdmi_check_timing(void *ctx, void *timing)
1277{ 1277{
1278 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1278 struct hdmi_context *hdata = ctx;
1279 struct fb_videomode *check_timing = timing; 1279 struct fb_videomode *check_timing = timing;
1280 1280
1281 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 1281 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
@@ -1914,7 +1914,7 @@ static void hdmi_mode_fixup(void *ctx, struct drm_connector *connector,
1914 struct drm_display_mode *adjusted_mode) 1914 struct drm_display_mode *adjusted_mode)
1915{ 1915{
1916 struct drm_display_mode *m; 1916 struct drm_display_mode *m;
1917 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1917 struct hdmi_context *hdata = ctx;
1918 int index; 1918 int index;
1919 1919
1920 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 1920 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
@@ -1951,7 +1951,7 @@ static void hdmi_mode_fixup(void *ctx, struct drm_connector *connector,
1951 1951
1952static void hdmi_mode_set(void *ctx, void *mode) 1952static void hdmi_mode_set(void *ctx, void *mode)
1953{ 1953{
1954 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1954 struct hdmi_context *hdata = ctx;
1955 int conf_idx; 1955 int conf_idx;
1956 1956
1957 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 1957 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
@@ -1974,7 +1974,7 @@ static void hdmi_get_max_resol(void *ctx, unsigned int *width,
1974 1974
1975static void hdmi_commit(void *ctx) 1975static void hdmi_commit(void *ctx)
1976{ 1976{
1977 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1977 struct hdmi_context *hdata = ctx;
1978 1978
1979 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 1979 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
1980 1980
@@ -1985,7 +1985,7 @@ static void hdmi_commit(void *ctx)
1985 1985
1986static void hdmi_disable(void *ctx) 1986static void hdmi_disable(void *ctx)
1987{ 1987{
1988 struct hdmi_context *hdata = (struct hdmi_context *)ctx; 1988 struct hdmi_context *hdata = ctx;
1989 1989
1990 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 1990 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
1991 1991
@@ -2020,7 +2020,7 @@ static void hdmi_hotplug_func(struct work_struct *work)
2020static irqreturn_t hdmi_irq_handler(int irq, void *arg) 2020static irqreturn_t hdmi_irq_handler(int irq, void *arg)
2021{ 2021{
2022 struct exynos_drm_hdmi_context *ctx = arg; 2022 struct exynos_drm_hdmi_context *ctx = arg;
2023 struct hdmi_context *hdata = (struct hdmi_context *)ctx->ctx; 2023 struct hdmi_context *hdata = ctx->ctx;
2024 u32 intc_flag; 2024 u32 intc_flag;
2025 2025
2026 intc_flag = hdmi_reg_read(hdata, HDMI_INTC_FLAG); 2026 intc_flag = hdmi_reg_read(hdata, HDMI_INTC_FLAG);
@@ -2173,7 +2173,7 @@ static int hdmi_runtime_suspend(struct device *dev)
2173 2173
2174 DRM_DEBUG_KMS("%s\n", __func__); 2174 DRM_DEBUG_KMS("%s\n", __func__);
2175 2175
2176 hdmi_resource_poweroff((struct hdmi_context *)ctx->ctx); 2176 hdmi_resource_poweroff(ctx->ctx);
2177 2177
2178 return 0; 2178 return 0;
2179} 2179}
@@ -2184,7 +2184,7 @@ static int hdmi_runtime_resume(struct device *dev)
2184 2184
2185 DRM_DEBUG_KMS("%s\n", __func__); 2185 DRM_DEBUG_KMS("%s\n", __func__);
2186 2186
2187 hdmi_resource_poweron((struct hdmi_context *)ctx->ctx); 2187 hdmi_resource_poweron(ctx->ctx);
2188 2188
2189 return 0; 2189 return 0;
2190} 2190}
@@ -2351,7 +2351,7 @@ err_data:
2351static int __devexit hdmi_remove(struct platform_device *pdev) 2351static int __devexit hdmi_remove(struct platform_device *pdev)
2352{ 2352{
2353 struct exynos_drm_hdmi_context *ctx = platform_get_drvdata(pdev); 2353 struct exynos_drm_hdmi_context *ctx = platform_get_drvdata(pdev);
2354 struct hdmi_context *hdata = (struct hdmi_context *)ctx->ctx; 2354 struct hdmi_context *hdata = ctx->ctx;
2355 2355
2356 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__); 2356 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
2357 2357