Commit 3b52f128aeacc4b9e5992012c39ffc9508513bcd

Authored by Inaky Perez-Gonzalez
Committed by Greg Kroah-Hartman
1 parent cdc9779228

wusb: add authenticathed bit to usb_dev

This bit indicates the system that the WUSB device has been crypto
authenticated and thus can operate as normal.

Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -372,6 +372,7 @@
372 372 * used or not. By default, wired USB devices are authorized.
373 373 * WUSB devices are not, until we authorize them from user space.
374 374 * FIXME -- complete doc
  375 + * @authenticated: Crypto authentication passed
375 376 * @wusb: device is Wireless USB
376 377 * @string_langid: language ID for strings
377 378 * @product: iProduct string, if present (static)
... ... @@ -438,6 +439,7 @@
438 439 unsigned persist_enabled:1;
439 440 unsigned have_langid:1;
440 441 unsigned authorized:1;
  442 + unsigned authenticated:1;
441 443 unsigned wusb:1;
442 444 int string_langid;
443 445