We don't need to cast away __iomem when testing with IS_ERR() or
converting with PTR_ERR(). Modern sparse can handle this just fine.
Drop it.

Cc: V Sujith Kumar Reddy <[email protected]>
Cc: Srinivasa Rao <[email protected]>
Cc: Srinivas Kandagatla <[email protected]>
Cc: Cheng-Yi Chiang <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
---
 sound/soc/qcom/lpass-cpu.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sound/soc/qcom/lpass-cpu.c b/sound/soc/qcom/lpass-cpu.c
index 40126202a4a3..b267fe8db3fc 100644
--- a/sound/soc/qcom/lpass-cpu.c
+++ b/sound/soc/qcom/lpass-cpu.c
@@ -788,10 +788,10 @@ int asoc_qcom_lpass_cpu_platform_probe(struct 
platform_device *pdev)
        res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lpass-lpaif");
 
        drvdata->lpaif = devm_ioremap_resource(dev, res);
-       if (IS_ERR((void const __force *)drvdata->lpaif)) {
+       if (IS_ERR(drvdata->lpaif)) {
                dev_err(dev, "error mapping reg resource: %ld\n",
-                               PTR_ERR((void const __force *)drvdata->lpaif));
-               return PTR_ERR((void const __force *)drvdata->lpaif);
+                               PTR_ERR(drvdata->lpaif));
+               return PTR_ERR(drvdata->lpaif);
        }
 
        lpass_cpu_regmap_config.max_register = LPAIF_WRDMAPER_REG(variant,
@@ -810,10 +810,10 @@ int asoc_qcom_lpass_cpu_platform_probe(struct 
platform_device *pdev)
                res = platform_get_resource_byname(pdev, IORESOURCE_MEM, 
"lpass-hdmiif");
 
                drvdata->hdmiif = devm_ioremap_resource(dev, res);
-               if (IS_ERR((void const __force *)drvdata->hdmiif)) {
+               if (IS_ERR(drvdata->hdmiif)) {
                        dev_err(dev, "error mapping reg resource: %ld\n",
-                                       PTR_ERR((void const __force 
*)drvdata->hdmiif));
-                       return PTR_ERR((void const __force *)drvdata->hdmiif);
+                                       PTR_ERR(drvdata->hdmiif));
+                       return PTR_ERR(drvdata->hdmiif);
                }
 
                lpass_hdmi_regmap_config.max_register = 
LPAIF_HDMI_RDMAPER_REG(variant,
-- 
https://chromeos.dev

Reply via email to