Commit 812219ab authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: usb.h: checkpatch cleanups

Minor formatting changes to clean up the file.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent aa84dfc4
...@@ -200,7 +200,7 @@ void usb_put_intf(struct usb_interface *intf); ...@@ -200,7 +200,7 @@ void usb_put_intf(struct usb_interface *intf);
/* this maximum is arbitrary */ /* this maximum is arbitrary */
#define USB_MAXINTERFACES 32 #define USB_MAXINTERFACES 32
#define USB_MAXIADS USB_MAXINTERFACES/2 #define USB_MAXIADS (USB_MAXINTERFACES/2)
/** /**
* struct usb_interface_cache - long-term representation of a device interface * struct usb_interface_cache - long-term representation of a device interface
...@@ -420,7 +420,7 @@ struct usb_tt; ...@@ -420,7 +420,7 @@ struct usb_tt;
*/ */
struct usb_device { struct usb_device {
int devnum; int devnum;
char devpath [16]; char devpath[16];
u32 route; u32 route;
enum usb_device_state state; enum usb_device_state state;
enum usb_device_speed speed; enum usb_device_speed speed;
...@@ -664,7 +664,7 @@ static inline int usb_make_path(struct usb_device *dev, char *buf, size_t size) ...@@ -664,7 +664,7 @@ static inline int usb_make_path(struct usb_device *dev, char *buf, size_t size)
* This macro is used to create a struct usb_device_id that matches a * This macro is used to create a struct usb_device_id that matches a
* specific device. * specific device.
*/ */
#define USB_DEVICE(vend,prod) \ #define USB_DEVICE(vend, prod) \
.match_flags = USB_DEVICE_ID_MATCH_DEVICE, \ .match_flags = USB_DEVICE_ID_MATCH_DEVICE, \
.idVendor = (vend), \ .idVendor = (vend), \
.idProduct = (prod) .idProduct = (prod)
...@@ -1535,21 +1535,21 @@ static inline unsigned int __create_pipe(struct usb_device *dev, ...@@ -1535,21 +1535,21 @@ static inline unsigned int __create_pipe(struct usb_device *dev,
} }
/* Create various pipes... */ /* Create various pipes... */
#define usb_sndctrlpipe(dev,endpoint) \ #define usb_sndctrlpipe(dev, endpoint) \
((PIPE_CONTROL << 30) | __create_pipe(dev, endpoint)) ((PIPE_CONTROL << 30) | __create_pipe(dev, endpoint))
#define usb_rcvctrlpipe(dev,endpoint) \ #define usb_rcvctrlpipe(dev, endpoint) \
((PIPE_CONTROL << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN) ((PIPE_CONTROL << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN)
#define usb_sndisocpipe(dev,endpoint) \ #define usb_sndisocpipe(dev, endpoint) \
((PIPE_ISOCHRONOUS << 30) | __create_pipe(dev, endpoint)) ((PIPE_ISOCHRONOUS << 30) | __create_pipe(dev, endpoint))
#define usb_rcvisocpipe(dev,endpoint) \ #define usb_rcvisocpipe(dev, endpoint) \
((PIPE_ISOCHRONOUS << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN) ((PIPE_ISOCHRONOUS << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN)
#define usb_sndbulkpipe(dev,endpoint) \ #define usb_sndbulkpipe(dev, endpoint) \
((PIPE_BULK << 30) | __create_pipe(dev, endpoint)) ((PIPE_BULK << 30) | __create_pipe(dev, endpoint))
#define usb_rcvbulkpipe(dev,endpoint) \ #define usb_rcvbulkpipe(dev, endpoint) \
((PIPE_BULK << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN) ((PIPE_BULK << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN)
#define usb_sndintpipe(dev,endpoint) \ #define usb_sndintpipe(dev, endpoint) \
((PIPE_INTERRUPT << 30) | __create_pipe(dev, endpoint)) ((PIPE_INTERRUPT << 30) | __create_pipe(dev, endpoint))
#define usb_rcvintpipe(dev,endpoint) \ #define usb_rcvintpipe(dev, endpoint) \
((PIPE_INTERRUPT << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN) ((PIPE_INTERRUPT << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN)
static inline struct usb_host_endpoint * static inline struct usb_host_endpoint *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment