From: Stefan Koch Date: Tue, 25 Aug 2015 19:10:05 +0000 (+0200) Subject: usb: interface authorization: Declare authorized attribute X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4ad2ddce1a096dea71d42969515d3a64f0d9246f;p=linux-beck.git usb: interface authorization: Declare authorized attribute The attribute authorized shows the authorization state for an interface. Signed-off-by: Stefan Koch Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/usb.h b/include/linux/usb.h index 447fe29b55b4..3deccab2ce0a 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -178,6 +178,7 @@ struct usb_interface { unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ unsigned needs_binding:1; /* needs delayed unbind/rebind */ unsigned resetting_device:1; /* true: bandwidth alloc after reset */ + unsigned authorized:1; /* used for interface authorization */ struct device dev; /* interface specific device info */ struct device *usb_dev;