Skip to content

Commit 477552e

Browse files
committed
drm/exynos: fix incorrect type issue
Fix incorrect type issue in fimd_commit() of exynos_drm_fimd.c module. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202312140930.Me9yWf8F-lkp@intel.com/ Signed-off-by: Inki Dae <inki.dae@samsung.com>
1 parent 571c7ed commit 477552e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/exynos/exynos_drm_fimd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ static void fimd_commit(struct exynos_drm_crtc *crtc)
480480
struct fimd_context *ctx = crtc->ctx;
481481
struct drm_display_mode *mode = &crtc->base.state->adjusted_mode;
482482
const struct fimd_driver_data *driver_data = ctx->driver_data;
483-
void *timing_base = ctx->regs + driver_data->timing_base;
483+
void __iomem *timing_base = ctx->regs + driver_data->timing_base;
484484
u32 val;
485485

486486
if (ctx->suspended)

0 commit comments

Comments
 (0)