diff options
| author | sakumisu <[email protected]> | 2025-06-24 18:21:09 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2025-06-24 18:21:09 +0800 |
| commit | 9d4faca7db97feb41e0cea1dfabef220172483c2 (patch) | |
| tree | 3972fd49f6d5ae90f793aa7e13deef4dcff9b704 | |
| parent | c22615ea6f93ff1ebdb2e880f7c583380d532d43 (diff) | |
fix(vendor/serial/usbh_ftdi): fix missing break
Signed-off-by: sakumisu <[email protected]>
| -rw-r--r-- | class/vendor/serial/usbh_ftdi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/class/vendor/serial/usbh_ftdi.c b/class/vendor/serial/usbh_ftdi.c index 6bc19b20..4bc7f81b 100644 --- a/class/vendor/serial/usbh_ftdi.c +++ b/class/vendor/serial/usbh_ftdi.c @@ -350,6 +350,7 @@ static int usbh_ftdi_connect(struct usbh_hubport *hport, uint8_t intf) switch (version) { case 0x400: ftdi_class->chip_type = FT232B; + break; case 0x500: ftdi_class->chip_type = FT2232C; break; |
