commit | f1f3f5de82be9c4a9b62491249a74964b60d1af7 | [log] [tgz] |
---|---|---|
author | Andre Przywara <andre.przywara@arm.com> | Thu Mar 27 15:33:03 2025 +0000 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 08 16:23:51 2025 -0600 |
tree | cd9876dc09075dee109675a81de7f6fe9c64ea51 | |
parent | 252d7d381d5f3f03a6772d39b86a552e42be1a99 [diff] |
usb: ohci-hcd: annotate switch/case fallthrough The USB OCHI code uses an implicit switch/case fallthrough after checking for valid descriptor IDs. Add our "fallthrough;" statement-like macro before the default branch in the OHCI code, to avoid a warning when GCC's -Wimplicit-fallthrough warning option is enabled. Signed-off-by: Andre Przywara <andre.przywara@arm.com>