usb: tiny formatting nit

Format 300 baud like all the others here. No functional change.
This commit is contained in:
Warner Losh 2021-03-11 08:23:32 -07:00
parent 913e7dc3e0
commit 1645a4ae64

View File

@ -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: