From: Grigore Popescu Date: Thu, 10 Sep 2020 09:59:03 +0000 (+0300) Subject: drivers: net: ldpaa_eth: lx2160a: fix bug in checking if a DPMAC is enabled X-Git-Tag: v2020.10~10^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=479cfd1fa6559b6b4e260b05657a0c09bb76c837;p=platform%2Fkernel%2Fu-boot.git drivers: net: ldpaa_eth: lx2160a: fix bug in checking if a DPMAC is enabled The next DPMAC was always verified if it is enabled. In case of DPMAC@6, the DPMAC@7 is verified. As DPMAC@7 is disabled, DPMAC@6 will be considered disabled and not detected by uboot. Signed-off-by: Grigore Popescu Signed-off-by: Ioana Ciornei Reviewed-by: Priyanka Jain --- diff --git a/drivers/net/ldpaa_eth/lx2160a.c b/drivers/net/ldpaa_eth/lx2160a.c index 9432b6e..1e62c64 100644 --- a/drivers/net/ldpaa_eth/lx2160a.c +++ b/drivers/net/ldpaa_eth/lx2160a.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0+ /* - * Copyright 2018 NXP + * Copyright 2018, 2020 NXP */ #include #include @@ -57,7 +57,7 @@ phy_interface_t wriop_dpmac_enet_if(int dpmac_id, int lane_prtcl) { enum srds_prtcl; - if (is_device_disabled(dpmac_id + 1)) + if (is_device_disabled(dpmac_id)) return PHY_INTERFACE_MODE_NONE; if (lane_prtcl >= SGMII1 && lane_prtcl <= SGMII18)