All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c: xiic: Make suspend function names consistent
@ 2018-03-10 17:40 Moritz Fischer
  2018-03-17 20:16 ` Wolfram Sang
  0 siblings, 1 reply; 2+ messages in thread
From: Moritz Fischer @ 2018-03-10 17:40 UTC (permalink / raw)
  To: linux-i2c; +Cc: linux-kernel, wsa, Moritz Fischer

Suspend functions seem to have been copied from i2c-cadence driver.
Rename the functions to match the rest of the driver.

Signed-off-by: Moritz Fischer <mdf@kernel.org>
---
 drivers/i2c/busses/i2c-xiic.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
index ae6ed254e01d..c80527816ad0 100644
--- a/drivers/i2c/busses/i2c-xiic.c
+++ b/drivers/i2c/busses/i2c-xiic.c
@@ -851,7 +851,7 @@ static const struct of_device_id xiic_of_match[] = {
 MODULE_DEVICE_TABLE(of, xiic_of_match);
 #endif
 
-static int __maybe_unused cdns_i2c_runtime_suspend(struct device *dev)
+static int __maybe_unused xiic_i2c_runtime_suspend(struct device *dev)
 {
 	struct xiic_i2c *i2c = dev_get_drvdata(dev);
 
@@ -860,7 +860,7 @@ static int __maybe_unused cdns_i2c_runtime_suspend(struct device *dev)
 	return 0;
 }
 
-static int __maybe_unused cdns_i2c_runtime_resume(struct device *dev)
+static int __maybe_unused xiic_i2c_runtime_resume(struct device *dev)
 {
 	struct xiic_i2c *i2c = dev_get_drvdata(dev);
 	int ret;
@@ -875,8 +875,8 @@ static int __maybe_unused cdns_i2c_runtime_resume(struct device *dev)
 }
 
 static const struct dev_pm_ops xiic_dev_pm_ops = {
-	SET_RUNTIME_PM_OPS(cdns_i2c_runtime_suspend,
-			   cdns_i2c_runtime_resume, NULL)
+	SET_RUNTIME_PM_OPS(xiic_i2c_runtime_suspend,
+			   xiic_i2c_runtime_resume, NULL)
 };
 static struct platform_driver xiic_i2c_driver = {
 	.probe   = xiic_i2c_probe,
-- 
2.16.2

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

* Re: [PATCH] i2c: xiic: Make suspend function names consistent
  2018-03-10 17:40 [PATCH] i2c: xiic: Make suspend function names consistent Moritz Fischer
@ 2018-03-17 20:16 ` Wolfram Sang
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfram Sang @ 2018-03-17 20:16 UTC (permalink / raw)
  To: Moritz Fischer; +Cc: linux-i2c, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 281 bytes --]

On Sat, Mar 10, 2018 at 09:40:56AM -0800, Moritz Fischer wrote:
> Suspend functions seem to have been copied from i2c-cadence driver.
> Rename the functions to match the rest of the driver.
> 
> Signed-off-by: Moritz Fischer <mdf@kernel.org>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2018-03-17 20:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-10 17:40 [PATCH] i2c: xiic: Make suspend function names consistent Moritz Fischer
2018-03-17 20:16 ` Wolfram Sang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.