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

Commit abc2b10e authored by huangdaode's avatar huangdaode Committed by David S. Miller
Browse files

net: hisilicon fix a bug on Hisilicon Network Subsystem



This patch fixes the wrong judgement of mac_id when get port num.

Signed-off-by: default avatarhuangdaode <huangdaode@hisilicon.com>
Signed-off-by: default avataryankejian <yankejian@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 31bbd771
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ static int hns_mac_get_inner_port_num(struct hns_mac_cb *mac_cb,
			return -EINVAL;
		}
	} else if (mac_cb->dsaf_dev->dsaf_mode < DSAF_MODE_MAX) {
		if (mac_cb->mac_id <= DSAF_MAX_PORT_NUM_PER_CHIP) {
		if (mac_cb->mac_id >= DSAF_MAX_PORT_NUM_PER_CHIP) {
			dev_err(mac_cb->dev,
				"input invalid,%s mac%d vmid%d!\n",
				mac_cb->dsaf_dev->ae_dev.name,