mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
IB/ipath: Fix link up LED display
The check for link up was incorrect, thus setting the LED display inconsistently with the link state. Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
8bae0ff259
commit
b848882153
@ -853,7 +853,7 @@ static void ipath_setup_pe_setextled(struct ipath_devdata *dd, u64 lst,
|
||||
extctl = dd->ipath_extctrl & ~(INFINIPATH_EXTC_LED1PRIPORT_ON |
|
||||
INFINIPATH_EXTC_LED2PRIPORT_ON);
|
||||
|
||||
if (ltst & INFINIPATH_IBCS_LT_STATE_LINKUP)
|
||||
if (ltst == INFINIPATH_IBCS_LT_STATE_LINKUP)
|
||||
extctl |= INFINIPATH_EXTC_LED2PRIPORT_ON;
|
||||
if (lst == INFINIPATH_IBCS_L_STATE_ACTIVE)
|
||||
extctl |= INFINIPATH_EXTC_LED1PRIPORT_ON;
|
||||
|
Loading…
Reference in New Issue
Block a user