diff options
author | Jiri Kosina <jkosina@suse.cz> | 2007-01-26 06:56:16 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2007-02-05 04:00:42 -0500 |
commit | 8235ca3c05076f35d22578e8f530fd374104332a (patch) | |
tree | 8f76d92f1157e00fc4a0c6e1b49b3483f77eaa2c /drivers/usb/input | |
parent | 7c379146005d277982acde02da44c773de5e7e5a (diff) |
USB HID: remove hid_find_field_by_usage()
The unused hid_find_field_by_usage() function has been commented out for
a pretty long time. Remove it completely.
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/usb/input')
-rw-r--r-- | drivers/usb/input/hid-core.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c index 0392d0e8d020..cc1feb0ef296 100644 --- a/drivers/usb/input/hid-core.c +++ b/drivers/usb/input/hid-core.c | |||
@@ -221,23 +221,6 @@ static void hid_irq_in(struct urb *urb) | |||
221 | } | 221 | } |
222 | } | 222 | } |
223 | 223 | ||
224 | /* | ||
225 | * Find a report field with a specified HID usage. | ||
226 | */ | ||
227 | #if 0 | ||
228 | struct hid_field *hid_find_field_by_usage(struct hid_device *hid, __u32 wanted_usage, int type) | ||
229 | { | ||
230 | struct hid_report *report; | ||
231 | int i; | ||
232 | |||
233 | list_for_each_entry(report, &hid->report_enum[type].report_list, list) | ||
234 | for (i = 0; i < report->maxfield; i++) | ||
235 | if (report->field[i]->logical == wanted_usage) | ||
236 | return report->field[i]; | ||
237 | return NULL; | ||
238 | } | ||
239 | #endif /* 0 */ | ||
240 | |||
241 | static int hid_submit_out(struct hid_device *hid) | 224 | static int hid_submit_out(struct hid_device *hid) |
242 | { | 225 | { |
243 | struct hid_report *report; | 226 | struct hid_report *report; |