Commit d8ce9bf5 authored by Geliang Tang's avatar Geliang Tang Committed by Jiri Kosina

HID: move to_hid_device() to hid.h

to_hid_device() macro is defined in both hid-lg4ff.c and
hid-logitech-hidpp.c. So I move it to include/linux/hid.h.
Signed-off-by: default avatarGeliang Tang <geliangtang@163.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 0b1804e3
...@@ -33,8 +33,6 @@ ...@@ -33,8 +33,6 @@
#include "hid-lg4ff.h" #include "hid-lg4ff.h"
#include "hid-ids.h" #include "hid-ids.h"
#define to_hid_device(pdev) container_of(pdev, struct hid_device, dev)
#define LG4FF_MMODE_IS_MULTIMODE 0 #define LG4FF_MMODE_IS_MULTIMODE 0
#define LG4FF_MMODE_SWITCHED 1 #define LG4FF_MMODE_SWITCHED 1
#define LG4FF_MMODE_NOT_MULTIMODE 2 #define LG4FF_MMODE_NOT_MULTIMODE 2
......
...@@ -1310,8 +1310,6 @@ struct g920_private_data { ...@@ -1310,8 +1310,6 @@ struct g920_private_data {
u16 range; u16 range;
}; };
#define to_hid_device(pdev) container_of(pdev, struct hid_device, dev)
static ssize_t g920_range_show(struct device *dev, struct device_attribute *attr, static ssize_t g920_range_show(struct device *dev, struct device_attribute *attr,
char *buf) char *buf)
{ {
......
...@@ -565,6 +565,9 @@ struct hid_device { /* device report descriptor */ ...@@ -565,6 +565,9 @@ struct hid_device { /* device report descriptor */
wait_queue_head_t debug_wait; wait_queue_head_t debug_wait;
}; };
#define to_hid_device(pdev) \
container_of(pdev, struct hid_device, dev)
static inline void *hid_get_drvdata(struct hid_device *hdev) static inline void *hid_get_drvdata(struct hid_device *hdev)
{ {
return dev_get_drvdata(&hdev->dev); return dev_get_drvdata(&hdev->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment