aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-02-17 23:58:53 +0100
committerDavid S. Miller <davem@sunset.davemloft.net>2007-02-26 11:42:39 -0800
commitf5ffd4620aba9e55656483ae1ef5c79ba81f5403 (patch)
tree0d78c4a51cf1cab12f7ba2852d4140be9639be2a /net/bluetooth
parent[Bluetooth] Add support for using the HID subsystem (diff)
downloadlinux-dev-f5ffd4620aba9e55656483ae1ef5c79ba81f5403.tar.xz
linux-dev-f5ffd4620aba9e55656483ae1ef5c79ba81f5403.zip
[Bluetooth] Add open and close callbacks for HID device
The open and close callbacks for the HID device are not optional, but for the Bluetooth HID report mode support it is enough to add empty dummy callbacks. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/hidp/core.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
index 05e23bbcb0a1..4c914df5fd06 100644
--- a/net/bluetooth/hidp/core.c
+++ b/net/bluetooth/hidp/core.c
@@ -670,6 +670,15 @@ static inline void hidp_setup_input(struct hidp_session *session, struct hidp_co
input_register_device(input);
}
+static int hidp_open(struct hid_device *hid)
+{
+ return 0;
+}
+
+static void hidp_close(struct hid_device *hid)
+{
+}
+
static inline void hidp_setup_hid(struct hidp_session *session, struct hidp_connadd_req *req)
{
struct hid_device *hid = session->hid;
@@ -694,6 +703,9 @@ static inline void hidp_setup_hid(struct hidp_session *session, struct hidp_conn
hid->dev = hidp_get_device(session);
+ hid->hid_open = hidp_open;
+ hid->hid_close = hidp_close;
+
hid->hidinput_input_event = hidp_hidinput_event;
list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)