Message ID | 20190718013205.24919-1-Anson.Huang@nxp.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | a315614b68993318f6913cc28b9b4e472ebbdf26 |
Headers | show |
Series | pwm: mxs: use devm_platform_ioremap_resource() to simplify code | expand |
> From: Anson.Huang@nxp.com <Anson.Huang@nxp.com> > Sent: Thursday, July 18, 2019 9:32 AM > > Use the new helper devm_platform_ioremap_resource() which wraps the > platform_get_resource() and devm_ioremap_resource() together, to simplify > the code. > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> Regards Aisheng
Gentle ping... > > From: Anson.Huang@nxp.com <Anson.Huang@nxp.com> > > Sent: Thursday, July 18, 2019 9:32 AM > > > > Use the new helper devm_platform_ioremap_resource() which wraps the > > platform_get_resource() and devm_ioremap_resource() together, to > > simplify the code. > > > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> > > Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> > > Regards > Aisheng
Hello, On Tue, Aug 20, 2019 at 05:56:40AM +0000, Anson Huang wrote: > Gentle ping... My impression[1] is that Thierry collects patches in bulk once or twice per release cycle. The last two such bulks were between 5.2-rc6 and 5.2-rc7 and in the 5.2 merge window. So given we're at v5.3-rc5 now I expect some action soon :-) > > > From: Anson.Huang@nxp.com <Anson.Huang@nxp.com> > > > Sent: Thursday, July 18, 2019 9:32 AM > > > > > > Use the new helper devm_platform_ioremap_resource() which wraps the > > > platform_get_resource() and devm_ioremap_resource() together, to > > > simplify the code. > > > > > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> > > > > Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Best regards Uwe [1] from git log --committer=Thierry --format=%ci drivers/pwm | cut -d\ -f1 | uniq -c
Ping..., 1 month passed, NOT sure what is the latest status. Anson > On Tue, Aug 20, 2019 at 05:56:40AM +0000, Anson Huang wrote: > > Gentle ping... > > My impression[1] is that Thierry collects patches in bulk once or twice per > release cycle. The last two such bulks were between 5.2-rc6 and > 5.2-rc7 and in the 5.2 merge window. So given we're at v5.3-rc5 now I expect > some action soon :-) > > > > > From: Anson.Huang@nxp.com <Anson.Huang@nxp.com> > > > > Sent: Thursday, July 18, 2019 9:32 AM > > > > > > > > Use the new helper devm_platform_ioremap_resource() which wraps > > > > the > > > > platform_get_resource() and devm_ioremap_resource() together, to > > > > simplify the code. > > > > > > > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> > > > > > > Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> > > Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> > > Best regards > Uwe > > [1] from git log --committer=Thierry --format=%ci drivers/pwm | cut -d\ -f1 | > uniq -c > -- > Pengutronix e.K. | Uwe Kleine-König | > Industrial Linux Solutions | > https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.p > engutronix.de%2F&data=02%7C01%7Canson.huang%40nxp.com%7C34 > ed78e5b90642e6173d08d72829bc65%7C686ea1d3bc2b4c6fa92cd99c5c30163 > 5%7C0%7C0%7C637022032026755310&sdata=RM0DjN9B%2FomxSSlGp > adxX50yYesNjOAFTXaghkxyOCQ%3D&reserved=0 |
diff --git a/drivers/pwm/pwm-mxs.c b/drivers/pwm/pwm-mxs.c index 04c0f6b..b14376b 100644 --- a/drivers/pwm/pwm-mxs.c +++ b/drivers/pwm/pwm-mxs.c @@ -126,15 +126,13 @@ static int mxs_pwm_probe(struct platform_device *pdev) { struct device_node *np = pdev->dev.of_node; struct mxs_pwm_chip *mxs; - struct resource *res; int ret; mxs = devm_kzalloc(&pdev->dev, sizeof(*mxs), GFP_KERNEL); if (!mxs) return -ENOMEM; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - mxs->base = devm_ioremap_resource(&pdev->dev, res); + mxs->base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(mxs->base)) return PTR_ERR(mxs->base);