diff options
Diffstat (limited to 'net/bluetooth/hidp/core.c')
-rw-r--r-- | net/bluetooth/hidp/core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c index 002743ea509c..8112893037bd 100644 --- a/net/bluetooth/hidp/core.c +++ b/net/bluetooth/hidp/core.c | |||
@@ -734,7 +734,7 @@ static void hidp_stop(struct hid_device *hid) | |||
734 | hid->claimed = 0; | 734 | hid->claimed = 0; |
735 | } | 735 | } |
736 | 736 | ||
737 | static struct hid_ll_driver hidp_hid_driver = { | 737 | struct hid_ll_driver hidp_hid_driver = { |
738 | .parse = hidp_parse, | 738 | .parse = hidp_parse, |
739 | .start = hidp_start, | 739 | .start = hidp_start, |
740 | .stop = hidp_stop, | 740 | .stop = hidp_stop, |
@@ -743,6 +743,7 @@ static struct hid_ll_driver hidp_hid_driver = { | |||
743 | .raw_request = hidp_raw_request, | 743 | .raw_request = hidp_raw_request, |
744 | .output_report = hidp_output_report, | 744 | .output_report = hidp_output_report, |
745 | }; | 745 | }; |
746 | EXPORT_SYMBOL_GPL(hidp_hid_driver); | ||
746 | 747 | ||
747 | /* This function sets up the hid device. It does not add it | 748 | /* This function sets up the hid device. It does not add it |
748 | to the HID system. That is done in hidp_add_connection(). */ | 749 | to the HID system. That is done in hidp_add_connection(). */ |