Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 75d28f46 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by David S. Miller
Browse files

net: 8390: pcnet_cs: mark expected switch fall-through



In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Addresses-Coverity-ID: 114891
Signed-off-by: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2d919149
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1107,6 +1107,7 @@ static int ei_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
    switch (cmd) {
    case SIOCGMIIPHY:
	data->phy_id = info->phy_id;
	/* fall through */
    case SIOCGMIIREG:		/* Read MII PHY register. */
	data->val_out = mdio_read(mii_addr, data->phy_id, data->reg_num & 0x1f);
	return 0;