提交 ba91a967 编写于 作者: G Geliang Tang 提交者: Jiri Kosina

HID: add a new helper to_hid_driver()

Add a new helper to_hid_driver() and use it in hid-core.c.
Signed-off-by: NGeliang Tang <geliangtang@163.com>
Signed-off-by: NJiri Kosina <jkosina@suse.cz>
上级 ee79a8f8
...@@ -2077,7 +2077,7 @@ struct hid_dynid { ...@@ -2077,7 +2077,7 @@ struct hid_dynid {
static ssize_t store_new_id(struct device_driver *drv, const char *buf, static ssize_t store_new_id(struct device_driver *drv, const char *buf,
size_t count) size_t count)
{ {
struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver); struct hid_driver *hdrv = to_hid_driver(drv);
struct hid_dynid *dynid; struct hid_dynid *dynid;
__u32 bus, vendor, product; __u32 bus, vendor, product;
unsigned long driver_data = 0; unsigned long driver_data = 0;
...@@ -2139,7 +2139,7 @@ static const struct hid_device_id *hid_match_device(struct hid_device *hdev, ...@@ -2139,7 +2139,7 @@ static const struct hid_device_id *hid_match_device(struct hid_device *hdev,
static int hid_bus_match(struct device *dev, struct device_driver *drv) static int hid_bus_match(struct device *dev, struct device_driver *drv)
{ {
struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver); struct hid_driver *hdrv = to_hid_driver(drv);
struct hid_device *hdev = to_hid_device(dev); struct hid_device *hdev = to_hid_device(dev);
return hid_match_device(hdev, hdrv) != NULL; return hid_match_device(hdev, hdrv) != NULL;
...@@ -2147,8 +2147,7 @@ static int hid_bus_match(struct device *dev, struct device_driver *drv) ...@@ -2147,8 +2147,7 @@ static int hid_bus_match(struct device *dev, struct device_driver *drv)
static int hid_device_probe(struct device *dev) static int hid_device_probe(struct device *dev)
{ {
struct hid_driver *hdrv = container_of(dev->driver, struct hid_driver *hdrv = to_hid_driver(dev->driver);
struct hid_driver, driver);
struct hid_device *hdev = to_hid_device(dev); struct hid_device *hdev = to_hid_device(dev);
const struct hid_device_id *id; const struct hid_device_id *id;
int ret = 0; int ret = 0;
......
...@@ -717,6 +717,9 @@ struct hid_driver { ...@@ -717,6 +717,9 @@ struct hid_driver {
struct device_driver driver; struct device_driver driver;
}; };
#define to_hid_driver(pdrv) \
container_of(pdrv, struct hid_driver, driver)
/** /**
* hid_ll_driver - low level driver callbacks * hid_ll_driver - low level driver callbacks
* @start: called on probe to start the device * @start: called on probe to start the device
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册