public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] driver-core: fix DEVICE_INT_ATTR to use correct show/store functions
@ 2012-05-03 22:07 Michael Davidson
  2012-05-03 22:12 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Davidson @ 2012-05-03 22:07 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel

[PATCH] driver-core: fix DEVICE_INT_ATTR to use correct show/store functions

DEVICE_INT_ATTR() should use device_show_int() and device_store_int()
not device_show_ulong() and device_store_ulong()

Signed-off-by: Michael Davidson <md@google.com>
---

--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -508,7 +508,7 @@ ssize_t device_store_int(struct device *
 		{ __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
 #define DEVICE_INT_ATTR(_name, _mode, _var)  	struct dev_ext_attribute dev_attr_##_name = -		{ __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
+		{ __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
 
 extern int device_create_file(struct device *device,
 			      const struct device_attribute *entry);

^ permalink raw reply	[flat|nested] 5+ messages in thread
* [PATCH] driver-core: fix DEVICE_INT_ATTR to use correct show/store functions
@ 2012-05-03 23:19 Michael Davidson
  2012-05-03 23:32 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Davidson @ 2012-05-03 23:19 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel

[PATCH] driver-core: fix DEVICE_INT_ATTR to use correct show/store functions

DEVICE_INT_ATTR() should use device_show_int() and device_store_int()
not device_show_ulong() and device_store_ulong()

Signed-off-by: Michael Davidson <md@google.com>
---

--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -508,7 +508,7 @@ ssize_t device_store_int(struct device *
 		{ __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
 #define DEVICE_INT_ATTR(_name, _mode, _var) \
 	struct dev_ext_attribute dev_attr_##_name = \
-		{ __ATTR(_name, _mode, device_show_ulong, device_store_ulong), &(_var) }
+		{ __ATTR(_name, _mode, device_show_int, device_store_int), &(_var) }
 
 extern int device_create_file(struct device *device,
 			      const struct device_attribute *entry);

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

end of thread, other threads:[~2012-05-03 23:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03 22:07 [PATCH] driver-core: fix DEVICE_INT_ATTR to use correct show/store functions Michael Davidson
2012-05-03 22:12 ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2012-05-03 23:19 Michael Davidson
2012-05-03 23:32 ` Greg KH
2012-05-03 23:39   ` Michael Davidson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox