alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [alsa-devel] [PATCH] soundwire: qcom: fix devm_platform_ioremap_resource.cocci warnings
@ 2019-10-15 10:42 Julia Lawall
  0 siblings, 0 replies; only message in thread
From: Julia Lawall @ 2019-10-15 10:42 UTC (permalink / raw)
  To: Srinivas Kandagatla
  Cc: robh, alsa-devel, bgoswami, devicetree, linux-kernel, spapothi,
	pierre-louis.bossart, lgirdwood, vkoul, broonie,
	Srinivas Kandagatla

From: kbuild test robot <lkp@intel.com>

 Use devm_platform_ioremap_resource helper which wraps
 platform_get_resource() and devm_ioremap_resource() together.

Generated by: scripts/coccinelle/api/devm_platform_ioremap_resource.cocci

Fixes: 4a789cff1848 ("soundwire: qcom: add support for SoundWire controller")
CC: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
---

url:    https://github.com/0day-ci/linux/commits/Srinivas-Kandagatla/soundwire-Add-support-to-Qualcomm-SoundWire-master/20191014-063507
:::::: branch date: 9 hours ago
:::::: commit date: 9 hours ago

 qcom.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

--- a/drivers/soundwire/qcom.c
+++ b/drivers/soundwire/qcom.c
@@ -784,7 +784,6 @@ static int qcom_swrm_probe(struct platfo
 	struct sdw_master_prop *prop;
 	struct sdw_bus_params *params;
 	struct qcom_swrm_ctrl *ctrl;
-	struct resource *res;
 	int ret;
 	u32 val;

@@ -801,8 +800,7 @@ static int qcom_swrm_probe(struct platfo
 	} else {
 		ctrl->reg_read = qcom_swrm_mmio_reg_read;
 		ctrl->reg_write = qcom_swrm_mmio_reg_write;
-		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-		ctrl->base = devm_ioremap_resource(dev, res);
+		ctrl->base = devm_platform_ioremap_resource(pdev, 0);
 		if (IS_ERR(ctrl->base))
 			return PTR_ERR(ctrl->base);
 	}
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-10-15 10:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-15 10:42 [alsa-devel] [PATCH] soundwire: qcom: fix devm_platform_ioremap_resource.cocci warnings Julia Lawall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).