diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2013-07-15 19:10:10 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-07-31 10:24:08 +0200 |
commit | ddf64a3c03d4d68431146a0f1622844cc6cb6c22 (patch) | |
tree | 00bd77df13d86adce4d9c17d51a68fd4dfae1a44 /drivers/hid | |
parent | 3366dd9fa887ebbda4872e9554f853eaeda764be (diff) | |
download | blackbird-op-linux-ddf64a3c03d4d68431146a0f1622844cc6cb6c22.tar.gz blackbird-op-linux-ddf64a3c03d4d68431146a0f1622844cc6cb6c22.zip |
HID: usbhid: make usbhid_set_leds() static
usbhid_set_leds() is only used inside of usbhid/hid-core.c so no need to
export it.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/usbhid/hid-core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/hid/usbhid/hid-core.c b/drivers/hid/usbhid/hid-core.c index 99418285222c..5482bf447688 100644 --- a/drivers/hid/usbhid/hid-core.c +++ b/drivers/hid/usbhid/hid-core.c @@ -857,7 +857,7 @@ static int hid_find_field_early(struct hid_device *hid, unsigned int page, return -1; } -void usbhid_set_leds(struct hid_device *hid) +static void usbhid_set_leds(struct hid_device *hid) { struct hid_field *field; int offset; @@ -867,7 +867,6 @@ void usbhid_set_leds(struct hid_device *hid) usbhid_submit_report(hid, field->report, USB_DIR_OUT); } } -EXPORT_SYMBOL_GPL(usbhid_set_leds); /* * Traverse the supplied list of reports and find the longest |