aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-lg4ff.c
diff options
context:
space:
mode:
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>2015-01-19 02:03:26 -0500
committerJiri Kosina <jkosina@suse.cz>2015-01-19 07:58:47 -0500
commit2f1cec3250e38609bf9252db52dbbe61603c04a7 (patch)
treede7e07c08660f1fa32aa423e259317a69508953d /drivers/hid/hid-lg4ff.c
parentfcf80e597c5182edbcbe8322f8e4dfbf5b5d5d64 (diff)
HID: hid-lg4ff: use DEVICE_ATTR_RW macro
Use the DEVICE_ATTR_RW macro to reduce boiler plate and move the attribute declaration to get rid of function signatures. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-lg4ff.c')
-rw-r--r--drivers/hid/hid-lg4ff.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c
index 4b668bf6a67c..db0dd9b17e53 100644
--- a/drivers/hid/hid-lg4ff.c
+++ b/drivers/hid/hid-lg4ff.c
@@ -49,11 +49,6 @@
49 49
50static void hid_lg4ff_set_range_dfp(struct hid_device *hid, u16 range); 50static void hid_lg4ff_set_range_dfp(struct hid_device *hid, u16 range);
51static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range); 51static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range);
52static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *attr, char *buf);
53static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count);
54
55static DEVICE_ATTR(range, S_IRUGO | S_IWUSR, lg4ff_range_show,
56 lg4ff_range_store);
57 52
58struct lg4ff_device_entry { 53struct lg4ff_device_entry {
59 __u32 product_id; 54 __u32 product_id;
@@ -417,7 +412,8 @@ static void hid_lg4ff_switch_native(struct hid_device *hid, const struct lg4ff_n
417} 412}
418 413
419/* Read current range and display it in terminal */ 414/* Read current range and display it in terminal */
420static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *attr, char *buf) 415static ssize_t range_show(struct device *dev, struct device_attribute *attr,
416 char *buf)
421{ 417{
422 struct hid_device *hid = to_hid_device(dev); 418 struct hid_device *hid = to_hid_device(dev);
423 struct lg4ff_device_entry *entry; 419 struct lg4ff_device_entry *entry;
@@ -442,7 +438,8 @@ static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *att
442 438
443/* Set range to user specified value, call appropriate function 439/* Set range to user specified value, call appropriate function
444 * according to the type of the wheel */ 440 * according to the type of the wheel */
445static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) 441static ssize_t range_store(struct device *dev, struct device_attribute *attr,
442 const char *buf, size_t count)
446{ 443{
447 struct hid_device *hid = to_hid_device(dev); 444 struct hid_device *hid = to_hid_device(dev);
448 struct lg4ff_device_entry *entry; 445 struct lg4ff_device_entry *entry;
@@ -473,6 +470,7 @@ static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *at
473 470
474 return count; 471 return count;
475} 472}
473static DEVICE_ATTR_RW(range);
476 474
477#ifdef CONFIG_LEDS_CLASS 475#ifdef CONFIG_LEDS_CLASS
478static void lg4ff_set_leds(struct hid_device *hid, __u8 leds) 476static void lg4ff_set_leds(struct hid_device *hid, __u8 leds)