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

Commit 24c15abd authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "net: qfec: Fix error in GMAC_N_CLKDIV_SHFT macro"

parents de66b430 bc9cd395
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -732,7 +732,7 @@ struct qfec_enh_buf_desc {
#define CLKDIV_SGMII_100           0x0004
#define CLKDIV_SGMII_10            0x0031
#define CLKDIV_BMSK                0x007f
#define GMAC_N_CLKDIV_SHFT(n)      ((n) << 8)
#define GMAC_N_CLKDIV_SHFT(n)      ((n) * 8)
#define GMAC_N_CLKDIV_BMSK(n)      (CLKDIV_BMSK << GMAC_N_CLKDIV_SHFT(n))
#define GMAC_N_CLKDIV(v, n)        ((v) << GMAC_N_CLKDIV_SHFT(n))