Message ID | 20200713105517.27796-6-johan@kernel.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | 16045babc7985cef48b355540d11bd942220931d |
Headers | show |
Series | USB: serial: cp210x: add support for line-status events | expand |
diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index 09445b7a8f64..d0c05aa8a0d6 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -266,7 +266,7 @@ enum cp210x_event_state { }; struct cp210x_port_private { - __u8 bInterfaceNumber; + u8 bInterfaceNumber; bool has_swapped_line_ctl; bool event_mode; enum cp210x_event_state event_state;
The port data is not exported to user space so use the in-kernel u8 type. Signed-off-by: Johan Hovold <johan@kernel.org> --- drivers/usb/serial/cp210x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)