commit | 40ced587b1c0e1f15b7bab89fc70e7193103020c | [log] [tgz] |
---|---|---|
author | Andre Przywara <andre.przywara@arm.com> | Thu Mar 27 15:33:04 2025 +0000 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 08 16:23:51 2025 -0600 |
tree | c0f6cc3f60823c5dff92cdc88a406d514908489d | |
parent | f1f3f5de82be9c4a9b62491249a74964b60d1af7 [diff] |
usb: xhci: annotate switch/case fallthrough properly The USB XHCI code uses an implicit switch/case fallthrough to share code for handling full speed and low speed transfers. Add our "fallthrough;" statement-like macro before the second label in the XHCI code, to avoid a warning when GCC's -Wimplicit-fallthrough warning option is enabled. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Tom Rini <trini@konsulko.com>