* [PATCH 1/3] HID: Export hid_register_field
@ 2010-03-08 21:29 Benjamin Tissoires
0 siblings, 0 replies; only message in thread
From: Benjamin Tissoires @ 2010-03-08 21:29 UTC (permalink / raw)
To: linux-input
The Apple Magic Mouse (and probably other devices) publish reports that are not
called out in their HID report descriptors -- they only send them when enabled
through other writes to the devices. Exporting hid_register_report is not
sufficient as the given report is empty.
As the hid parser does not know the new fields, the driver has to register them
manually. This allows the driver to manually register the different fields.
Signed-off-by: Benjamin Tissoires <tissoire@cena.fr>
---
drivers/hid/hid-core.c | 3 ++-
include/linux/hid.h | 1 +
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index bfd8301..3313dff 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -83,7 +83,7 @@ EXPORT_SYMBOL_GPL(hid_register_report);
* Register a new field for this report.
*/
-static struct hid_field *hid_register_field(struct hid_report *report, unsigned usages, unsigned values)
+struct hid_field *hid_register_field(struct hid_report *report, unsigned usages, unsigned values)
{
struct hid_field *field;
@@ -103,6 +103,7 @@ static struct hid_field *hid_register_field(struct hid_report *report, unsigned
return field;
}
+EXPORT_SYMBOL_GPL(hid_register_field);
/*
* Open a collection. The type/usage is pushed on the stack.
diff --git a/include/linux/hid.h b/include/linux/hid.h
index b1344ec..50f17de 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -691,6 +691,7 @@ int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int
void hid_output_report(struct hid_report *report, __u8 *data);
struct hid_device *hid_allocate_device(void);
struct hid_report *hid_register_report(struct hid_device *device, unsigned type, unsigned id);
+struct hid_field *hid_register_field(struct hid_report *report, unsigned usages, unsigned values);
int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size);
int hid_check_keys_pressed(struct hid_device *hid);
int hid_connect(struct hid_device *hid, unsigned int connect_mask);
-- 1.6.6.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-03-08 21:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-08 21:29 [PATCH 1/3] HID: Export hid_register_field Benjamin Tissoires
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).