Skip to content

Commit

Permalink
[Bluetooth] Switch to using input_dev->dev.parent
Browse files Browse the repository at this point in the history
In preparation for struct class_device -> struct device input core
conversion, switch to using input_dev->dev.parent when specifying
device position in sysfs tree.

Also, do not access input_dev->private directly, use helpers and
do not use kfree() on input device, use input_free_device() instead.

Signed-off-by: Dmitry Torokhov <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
  • Loading branch information
holtmann authored and David S. Miller committed May 11, 2007
1 parent 129a84d commit 5be3946
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions net/bluetooth/hidp/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ static inline int hidp_queue_event(struct hidp_session *session, struct input_de

static int hidp_hidinput_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
struct hid_device *hid = dev->private;
struct hid_device *hid = input_get_drvdata(dev);
struct hidp_session *session = hid->driver_data;

return hidp_queue_event(session, dev, type, code, value);
}

static int hidp_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
struct hidp_session *session = dev->private;
struct hidp_session *session = input_get_drvdata(dev);

return hidp_queue_event(session, dev, type, code, value);
}
Expand Down Expand Up @@ -630,7 +630,7 @@ static inline void hidp_setup_input(struct hidp_session *session, struct hidp_co
struct input_dev *input = session->input;
int i;

input->private = session;
input_set_drvdata(input, session);

input->name = "Bluetooth HID Boot Protocol Device";

Expand Down Expand Up @@ -663,7 +663,7 @@ static inline void hidp_setup_input(struct hidp_session *session, struct hidp_co
input->relbit[0] |= BIT(REL_WHEEL);
}

input->cdev.dev = hidp_get_device(session);
input->dev.parent = hidp_get_device(session);

input->event = hidp_input_event;

Expand Down Expand Up @@ -864,7 +864,7 @@ int hidp_add_connection(struct hidp_connadd_req *req, struct socket *ctrl_sock,
if (session->hid)
hid_free_device(session->hid);

kfree(session->input);
input_free_device(session->input);
kfree(session);
return err;
}
Expand Down

0 comments on commit 5be3946

Please sign in to comment.