commit | bb6b6aa673bc1ae4d06ae74e3f774fb3ae9bf870 | [log] [tgz] |
---|---|---|
author | Andre Przywara <andre.przywara@arm.com> | Thu Mar 27 15:33:06 2025 +0000 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 08 16:23:51 2025 -0600 |
tree | 5caa00a569c0b2b3ba078a634af3daf4e5c25feb | |
parent | 0cff09fdc67737d3371173c2e0750ca780ab63e2 [diff] |
net: e1000: annotate switch/case fallthrough The E1000 driver uses an implicit switch/case fallthrough for sharing some code supporting different PHYs. Add our "fallthrough;" statement-like macro before the two labels in e1000_set_phy_type(), to avoid a warning when GCC's -Wimplicit-fallthrough warning option is enabled. Signed-off-by: Andre Przywara <andre.przywara@arm.com>