diff mbox series

[v2,5/6] drivers: usb: serial: mos7840: replace 'unsigned' w/ 'unsigned int'

Message ID 20241025061711.198933-6-tony467913@gmail.com (mailing list archive)
State New
Headers show
Series usb: serial: mos7840: Fix coding style warnings | expand

Commit Message

Tony Chung Oct. 25, 2024, 6:17 a.m. UTC
Fix coding style "Prefer 'unsigned int' to bare use of 'unsigned'"

Signed-off-by: Tony Chung <tony467913@gmail.com>
---
 drivers/usb/serial/mos7840.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c
index 31ec2cf1b..d2cae6619 100644
--- a/drivers/usb/serial/mos7840.c
+++ b/drivers/usb/serial/mos7840.c
@@ -1201,7 +1201,7 @@  static void mos7840_change_port_settings(struct tty_struct *tty,
 {
 	struct usb_serial_port *port = mos7840_port->port;
 	int baud;
-	unsigned cflag;
+	unsigned int cflag;
 	__u8 lData;
 	__u8 lParity;
 	__u8 lStop;