diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-04-19 20:39:35 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-04-19 22:42:19 -0700 |
commit | 0456c66f4e905e1ca839318219c770988b47975c (patch) | |
tree | af2bb0303cf147082a8f62e6fdee6620dc6b7dad /include | |
parent | 38a1807badd26d413e8f2b0393a0c5bfdf9e912b (diff) | |
download | linux-0456c66f4e905e1ca839318219c770988b47975c.tar.gz linux-0456c66f4e905e1ca839318219c770988b47975c.tar.bz2 linux-0456c66f4e905e1ca839318219c770988b47975c.zip |
Input: serio - add firmware_id sysfs attribute
serio devices exposed via platform firmware interfaces such as ACPI may
provide additional identifying information of use to userspace.
We don't associate the serio devices with the firmware device (we don't
set it as parent), so there's no way for userspace to make use of this
information.
We cannot change the parent for serio devices instantiated though a
firmware interface as that would break suspend / resume ordering.
Therefore this patch adds a new firmware_id sysfs attribute so that
userspace can get a string from there with any additional identifying
information the firmware interface may provide.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/serio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/serio.h b/include/linux/serio.h index 36aac733840a..9f779c7a2da4 100644 --- a/include/linux/serio.h +++ b/include/linux/serio.h @@ -23,6 +23,7 @@ struct serio { char name[32]; char phys[32]; + char firmware_id[128]; bool manual_bind; |