search for: phy_data

Displaying 3 results from an estimated 3 matches for "phy_data".

2015 Jul 11
0
EXTLINUX - GCC 5
...--------------------------------------- [gpxe/src/crypto/axtls/aes.c:251]: (error) Uninitialized variable: t1 Crypto stuff is cryptic by intention. ----------------------------------------------------------------- [gpxe/src/drivers/net/e1000/e1000_hw.c:7395]: (error) Uninitialized variable: phy_data ... [gpxe/src/drivers/net/e1000/e1000_hw.c:7557]: (error) Uninitialized variable: phy_data Might be a false positive. The code path which does not set phy_data might be separated from the code paths which use it. ----------------------------------------------------------------- [gpxe/src/u...
2015 Jul 11
3
EXTLINUX - GCC 5
> On Jul 10, 2015 5:29 PM, "poma via Syslinux" <syslinux at zytor.com> wrote: > > > The same as with the ISOLINUX, stable and git. > > Only this time has nothing to do with the menu. > > 1) EXTLINUX is no longer a discrete variant. The installer extlinux now > installs SYSLINUX. > 2) William Kensington already saw a similar behavior wherein an
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...000e/phy.c b/drivers/net/ethernet/intel/e1000e/phy.c index e11c877595fb..9fec7cc52710 100644 --- a/drivers/net/ethernet/intel/e1000e/phy.c +++ b/drivers/net/ethernet/intel/e1000e/phy.c @@ -607,7 +607,7 @@ static s32 e1000_set_master_slave_mode(struct e1000_hw *hw) break; case e1000_ms_auto: phy_data &= ~CTL1000_ENABLE_MASTER; - fallthrough; + break; default: break; } diff --git a/drivers/net/ethernet/intel/fm10k/fm10k_pf.c b/drivers/net/ethernet/intel/fm10k/fm10k_pf.c index c0780c3624c8..1c601d7464dd 100644 --- a/drivers/net/ethernet/intel/fm10k/fm10k_pf.c +++ b/drivers/net/ethern...