[patch 2/7] wusb: add authenticathed bit to usb_dev
Inaky Perez-Gonzalez <inaky-VuQAYsv1563Yd54FQh9/[email protected]>
| Newsgroups | gmane.linux.drivers.uwb,gmane.linux.usb.devel |
|---|---|
| Message-ID | <[email protected]> |
wusb-add-authenticated-bit-to-usb-dev.patch
(text/plain, 908 B)
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-VuQAYsv1563Yd54FQh9/[email protected]> --- include/linux/usb.h | 1 + 1 file changed, 1 insertion(+) Index: linux.hg/include/linux/usb.h =================================================================== --- linux.hg.orig/include/linux/usb.h 2007-07-31 12:18:42.000000000 -0700 +++ linux.hg/include/linux/usb.h 2007-07-31 12:18:58.000000000 -0700 @@ -384,6 +384,7 @@ unsigned discon_suspended:1; /* Disconnected while suspended */ unsigned have_langid:1; /* whether string_langid is valid */ unsigned authorized:1; /* Policy has determined we can use it */ + unsigned authenticated:1; /* Crypto authentication passed */ unsigned wusb:1; /* Device is Wireless USB */ int string_langid; /* language ID for strings */ -- Inaky