Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594194 > unrolled thread
| Started by | sunil.kovvuri@gmail.com |
|---|---|
| First post | 2017-03-07 13:50 +0100 |
| Last post | 2017-03-07 13:50 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 2/4] net: thunderx: Fix LMAC mode debug prints for QSGMII mode sunil.kovvuri@gmail.com - 2017-03-07 13:50 +0100
| From | sunil.kovvuri@gmail.com |
|---|---|
| Date | 2017-03-07 13:50 +0100 |
| Subject | [PATCH v2 2/4] net: thunderx: Fix LMAC mode debug prints for QSGMII mode |
| Message-ID | <timIW-7Bl-29@gated-at.bofh.it> |
From: Sunil Goutham <sgoutham@cavium.com> When BGX/LMACs are in QSGMII mode, for some LMACs, mode info is not being printed. This patch will fix that. With changes already done to not do any sort of serdes 2 lane mapping config calculation in kernel driver, we can get rid of this logic. Signed-off-by: Sunil Goutham <sgoutham@cavium.com> --- drivers/net/ethernet/cavium/thunder/thunder_bgx.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c index 4c8e8cf..9b8a53e 100644 --- a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c +++ b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c @@ -1011,12 +1011,6 @@ static void bgx_print_qlm_mode(struct bgx *bgx, u8 lmacid) dev_info(dev, "%s: 40G_KR4\n", (char *)str); break; case BGX_MODE_QSGMII: - if ((lmacid == 0) && - (bgx_get_lane2sds_cfg(bgx, lmac) != lmacid)) - return; - if ((lmacid == 2) && - (bgx_get_lane2sds_cfg(bgx, lmac) == lmacid)) - return; dev_info(dev, "%s: QSGMII\n", (char *)str); break; case BGX_MODE_RGMII: -- 2.7.4
Back to top | Article view | linux.kernel
csiph-web