diff options
author | Jiri Kosina <jkosina@suse.cz> | 2009-10-01 10:03:13 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-10-01 10:03:13 -0400 |
commit | ff9b00a226ccea66e6ce70e9083c42f5b6001f73 (patch) | |
tree | 6a9c1446f0465f13ebb4fc6939e0df3edb9bd9fa /drivers/hid | |
parent | fa59530267e1006b7180e9ce1dee4136907b2b65 (diff) |
HID: fix kerneldoc comment for hid_input_report()
The kerneldoc comment for 'interrupt' has already confused a lot
of people, as it is simply wrong. It doesn't carry the information
about the context, but is used to distinguish between two fundamental
types of low-level transport transfers -- interrupt vs. control.
Make this clear in the comment.
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index be34d32906bd..7d05c4bb201e 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c | |||
@@ -1066,7 +1066,7 @@ EXPORT_SYMBOL_GPL(hid_report_raw_event); | |||
1066 | * @type: HID report type (HID_*_REPORT) | 1066 | * @type: HID report type (HID_*_REPORT) |
1067 | * @data: report contents | 1067 | * @data: report contents |
1068 | * @size: size of data parameter | 1068 | * @size: size of data parameter |
1069 | * @interrupt: called from atomic? | 1069 | * @interrupt: distinguish between interrupt and control transfers |
1070 | * | 1070 | * |
1071 | * This is data entry for lower layers. | 1071 | * This is data entry for lower layers. |
1072 | */ | 1072 | */ |