[<prev] [next>] [day] [month] [year] [list]
Message-id: <006801ce1a37$8dc53c40$a94fb4c0$%han@samsung.com>
Date: Wed, 06 Mar 2013 15:55:14 +0900
From: Jingoo Han <jg1.han@...sung.com>
To: 'Andrew Morton' <akpm@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org, 'Tejun Heo' <tj@...nel.org>,
'Alessandro Zummo' <a.zummo@...ertech.it>,
rtc-linux@...glegroups.com, 'Jingoo Han' <jg1.han@...sung.com>
Subject: [PATCH] rtc: use struct device as the first argument for
devm_rtc_device_register()
Other devm_* APIs use 'struct evice *dev' as the first argument.
Thus, in order to sync with other devm_* functions, struct device
is used as the first argument for devm_rtc_device_register().
Signed-off-by: Jingoo Han <jg1.han@...sung.com>
---
drivers/rtc/class.c | 6 +++---
include/linux/rtc.h | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c
index b72b40b..6638540 100644
--- a/drivers/rtc/class.c
+++ b/drivers/rtc/class.c
@@ -275,8 +275,8 @@ static int devm_rtc_device_match(struct device *dev, void *res, void *data)
/**
* devm_rtc_device_register - resource managed rtc_device_register()
- * @name: the name of the device
* @dev: the device to register
+ * @name: the name of the device
* @ops: the rtc operations structure
* @owner: the module owner
*
@@ -287,8 +287,8 @@ static int devm_rtc_device_match(struct device *dev, void *res, void *data)
* for more information.
*/
-struct rtc_device *devm_rtc_device_register(const char *name,
- struct device *dev,
+struct rtc_device *devm_rtc_device_register(struct device *dev,
+ const char *name,
const struct rtc_class_ops *ops,
struct module *owner)
{
diff --git a/include/linux/rtc.h b/include/linux/rtc.h
index d955768..c2c2897 100644
--- a/include/linux/rtc.h
+++ b/include/linux/rtc.h
@@ -133,8 +133,8 @@ extern struct rtc_device *rtc_device_register(const char *name,
struct device *dev,
const struct rtc_class_ops *ops,
struct module *owner);
-extern struct rtc_device *devm_rtc_device_register(const char *name,
- struct device *dev,
+extern struct rtc_device *devm_rtc_device_register(struct device *dev,
+ const char *name,
const struct rtc_class_ops *ops,
struct module *owner);
extern void rtc_device_unregister(struct rtc_device *rtc);
--
1.7.2.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists