aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2021-03-11 15:23:32 +0000
committerWarner Losh <imp@FreeBSD.org>2021-03-11 15:24:13 +0000
commit1645a4ae645fa9b9e3571b7512caa92e73b20635 (patch)
treed2afc4673140d06469da7554cfb5a334460a0f3d
parent913e7dc3e0eb7df78ec0e7ecc7dd160a316a3ac6 (diff)
downloadsrc-1645a4ae645fa9b9e3571b7512caa92e73b20635.tar.gz
src-1645a4ae645fa9b9e3571b7512caa92e73b20635.zip
usb: tiny formatting nit
Format 300 baud like all the others here. No functional change.
-rw-r--r--sys/dev/usb/serial/umct.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/serial/umct.c b/sys/dev/usb/serial/umct.c
index 43f28c307f6d..dd452d38a67b 100644
--- a/sys/dev/usb/serial/umct.c
+++ b/sys/dev/usb/serial/umct.c
@@ -478,7 +478,8 @@ static uint8_t
umct_calc_baud(uint32_t baud)
{
switch (baud) {
- case B300:return (0x1);
+ case B300:
+ return (0x1);
case B600:
return (0x2);
case B1200: