diff options
author | Johan Hovold <johan@kernel.org> | 2017-03-02 06:51:15 -0500 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2017-03-16 05:13:37 -0400 |
commit | ef88f33fc1ee0a12a1e5eee7e4f70b7743100a19 (patch) | |
tree | 6611aadb6396fe174a3c3d657cef11391266c65e /include/linux/usb/serial.h | |
parent | c2fef4564cae387c2f724a95350084c2e9371250 (diff) |
USB: serial: clean up endpoint and port-counter types
Use unsigned-char type for the endpoint and port counters.
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'include/linux/usb/serial.h')
-rw-r--r-- | include/linux/usb/serial.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h index 704a1ab8240c..85b475933848 100644 --- a/include/linux/usb/serial.h +++ b/include/linux/usb/serial.h | |||
@@ -159,10 +159,10 @@ struct usb_serial { | |||
159 | unsigned char minors_reserved:1; | 159 | unsigned char minors_reserved:1; |
160 | unsigned char num_ports; | 160 | unsigned char num_ports; |
161 | unsigned char num_port_pointers; | 161 | unsigned char num_port_pointers; |
162 | char num_interrupt_in; | 162 | unsigned char num_interrupt_in; |
163 | char num_interrupt_out; | 163 | unsigned char num_interrupt_out; |
164 | char num_bulk_in; | 164 | unsigned char num_bulk_in; |
165 | char num_bulk_out; | 165 | unsigned char num_bulk_out; |
166 | struct usb_serial_port *port[MAX_NUM_PORTS]; | 166 | struct usb_serial_port *port[MAX_NUM_PORTS]; |
167 | struct kref kref; | 167 | struct kref kref; |
168 | struct mutex disc_mutex; | 168 | struct mutex disc_mutex; |
@@ -227,13 +227,14 @@ static inline void usb_set_serial_data(struct usb_serial *serial, void *data) | |||
227 | struct usb_serial_driver { | 227 | struct usb_serial_driver { |
228 | const char *description; | 228 | const char *description; |
229 | const struct usb_device_id *id_table; | 229 | const struct usb_device_id *id_table; |
230 | char num_ports; | ||
231 | 230 | ||
232 | struct list_head driver_list; | 231 | struct list_head driver_list; |
233 | struct device_driver driver; | 232 | struct device_driver driver; |
234 | struct usb_driver *usb_driver; | 233 | struct usb_driver *usb_driver; |
235 | struct usb_dynids dynids; | 234 | struct usb_dynids dynids; |
236 | 235 | ||
236 | unsigned char num_ports; | ||
237 | |||
237 | size_t bulk_in_size; | 238 | size_t bulk_in_size; |
238 | size_t bulk_out_size; | 239 | size_t bulk_out_size; |
239 | 240 | ||