linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] i2c: omap: switch to dev_get_drvdata()
@ 2015-06-25 19:34 Felipe Balbi
       [not found] ` <1435260890-32335-1-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Felipe Balbi @ 2015-06-25 19:34 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Linux OMAP Mailing List, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	Tony Lindgren, Linux ARM Kernel Mailing List, Felipe Balbi

there's no need to fetch the platform_device
in order to dereference it back to the dev
pointer to access drvdata, we can use
dev_get_drvdata() instead.

Signed-off-by: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>
---
 drivers/i2c/busses/i2c-omap.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index 0e894193accf..00712c1cf3c0 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -1403,8 +1403,7 @@ static int omap_i2c_remove(struct platform_device *pdev)
 #ifdef CONFIG_PM
 static int omap_i2c_runtime_suspend(struct device *dev)
 {
-	struct platform_device *pdev = to_platform_device(dev);
-	struct omap_i2c_dev *_dev = platform_get_drvdata(pdev);
+	struct omap_i2c_dev *_dev = dev_get_drvdata(dev);
 
 	_dev->iestate = omap_i2c_read_reg(_dev, OMAP_I2C_IE_REG);
 
@@ -1428,8 +1427,7 @@ static int omap_i2c_runtime_suspend(struct device *dev)
 
 static int omap_i2c_runtime_resume(struct device *dev)
 {
-	struct platform_device *pdev = to_platform_device(dev);
-	struct omap_i2c_dev *_dev = platform_get_drvdata(pdev);
+	struct omap_i2c_dev *_dev = dev_get_drvdata(dev);
 
 	if (!_dev->regs)
 		return 0;
-- 
2.4.4

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-07-14 11:02 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-25 19:34 [PATCH 1/3] i2c: omap: switch to dev_get_drvdata() Felipe Balbi
     [not found] ` <1435260890-32335-1-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2015-06-25 19:34   ` [PATCH 2/3] i2c: omap: abolish variable name confusion Felipe Balbi
     [not found]     ` <1435260890-32335-2-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2015-07-09 19:49       ` Wolfram Sang
2015-07-10 17:27         ` Felipe Balbi
     [not found]           ` <20150710172701.GB20408-HgARHv6XitJaoMGHk7MhZQC/G2K4zDHf@public.gmane.org>
2015-07-13 20:38             ` [PATCH 1/3] i2c: omap: switch to dev_get_drvdata() Felipe Balbi
     [not found]               ` <1436819884-1614-1-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2015-07-13 20:38                 ` [PATCH 2/3] i2c: omap: abolish variable name confusion Felipe Balbi
2015-07-13 20:38                 ` [PATCH 3/3] i2c: omap: on ->remove() call pm_runtime_put_sync() Felipe Balbi
2015-07-14 11:02                 ` [PATCH 1/3] i2c: omap: switch to dev_get_drvdata() Wolfram Sang
2015-06-25 19:34   ` [PATCH 3/3] i2c: omap: on ->remove() call pm_runtime_put_sync() Felipe Balbi
     [not found]     ` <1435260890-32335-3-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2015-07-09 10:18       ` Alexander Sverdlin
2015-07-09 10:09   ` [PATCH 1/3] i2c: omap: switch to dev_get_drvdata() Alexander Sverdlin
2015-07-09 19:46   ` Wolfram Sang

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).