diff options
author | Andrej Shadura <andrew.shadura@collabora.co.uk> | 2019-04-01 15:42:00 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2019-04-10 14:59:39 +0300 |
commit | 42337b9d4d958daae266dc455a54e3b9f157862a (patch) | |
tree | 3d745883c473e971f5f42e999f3c9cb6b86d5621 /drivers/hid/Makefile | |
parent | 8ed86627f715eacbd6db6862f9499d6d96ea4ad6 (diff) | |
download | linux-42337b9d4d958daae266dc455a54e3b9f157862a.tar.xz |
HID: add driver for U2F Zero built-in LED and RNG
U2F Zero supports custom commands for blinking the LED and getting data
from the internal hardware RNG. Expose the blinking function as a LED
device, and the internal hardware RNG as an HWRNG so that it can be used
to feed the enthropy pool.
Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index 170163b41303..338d93f0c139 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -109,6 +109,7 @@ obj-$(CONFIG_HID_THRUSTMASTER) += hid-tmff.o obj-$(CONFIG_HID_TIVO) += hid-tivo.o obj-$(CONFIG_HID_TOPSEED) += hid-topseed.o obj-$(CONFIG_HID_TWINHAN) += hid-twinhan.o +obj-$(CONFIG_HID_U2FZERO) += hid-u2fzero.o hid-uclogic-objs := hid-uclogic-core.o \ hid-uclogic-rdesc.o \ hid-uclogic-params.o |