diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2006-11-20 11:12:22 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-12-01 14:25:52 -0800 |
commit | ce3615879ae85373c03744b45b7c2d7ae5e29b2a (patch) | |
tree | b65e10b1d6a45cbda9d295a1198fb050842f3777 /include | |
parent | 1f9fc882d92f3ff390455836f98d7ddc36d4e4c3 (diff) | |
download | op-kernel-dev-ce3615879ae85373c03744b45b7c2d7ae5e29b2a.zip op-kernel-dev-ce3615879ae85373c03744b45b7c2d7ae5e29b2a.tar.gz |
USB: struct usb_device: change flag to bitflag
This patch (as816) changes an existing flag in the usb_device
structure to a bitflag, preparing the way for more bitflags to come
in the future.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 864c6c21..5634a2d 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -362,7 +362,7 @@ struct usb_device { u8 portnum; /* Parent port number (origin 1) */ u8 level; /* Number of USB hub ancestors */ - int have_langid; /* whether string_langid is valid */ + unsigned have_langid:1; /* whether string_langid is valid */ int string_langid; /* language ID for strings */ /* static strings from the device */ |