drm/msm/adreno: fix sparse warnings in a6xx code
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 10 Apr 2023 22:40:34 +0000 (01:40 +0300)
committerRob Clark <robdclark@chromium.org>
Sat, 10 Jun 2023 13:46:12 +0000 (06:46 -0700)
Sparse reports plenty of warnings against the a6xx code because of
a6xx_gmu::mmio and a6xx_gmu::rscc members. For some reason they were
defined as __iomem pointers rather than pointers to __iomem memory.
Correct the __iomem attribute.

Fixes: 02ef80c54e7c ("drm/msm/a6xx: update pdc/rscc GMU registers for A640/A650")
Reported-by: kernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/oe-kbuild-all/202304070550.NrbhJCvP-lkp@intel.com/
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/531583/
Signed-off-by: Rob Clark <robdclark@chromium.org>
drivers/gpu/drm/msm/adreno/a6xx_gmu.h

index 0bc3eb4..4759a8c 100644 (file)
@@ -51,8 +51,8 @@ struct a6xx_gmu {
 
        struct msm_gem_address_space *aspace;
 
-       void * __iomem mmio;
-       void * __iomem rscc;
+       void __iomem *mmio;
+       void __iomem *rscc;
 
        int hfi_irq;
        int gmu_irq;