diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-08-07 18:13:05 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-08-07 17:54:19 -0700 |
commit | 19aa45d447002798ec006faddd4f491a5839bebe (patch) | |
tree | 381c0cf4c4346e4ab4786b08525f68a1e1971640 | |
parent | b4bc39a3f666c3e93590aefbc00d94b95f80567f (diff) | |
download | linux-stable-19aa45d447002798ec006faddd4f491a5839bebe.tar.gz linux-stable-19aa45d447002798ec006faddd4f491a5839bebe.tar.bz2 linux-stable-19aa45d447002798ec006faddd4f491a5839bebe.zip |
liquidio: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 143135 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/cavium/liquidio/lio_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/cavium/liquidio/lio_main.c b/drivers/net/ethernet/cavium/liquidio/lio_main.c index 8ef87a76692b..6fb13fa73b27 100644 --- a/drivers/net/ethernet/cavium/liquidio/lio_main.c +++ b/drivers/net/ethernet/cavium/liquidio/lio_main.c @@ -2209,6 +2209,7 @@ static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) case SIOCSHWTSTAMP: if (lio->oct_dev->ptp_enable) return hwtstamp_ioctl(netdev, ifr); + /* fall through */ default: return -EOPNOTSUPP; } |