Fix a bug that PHY isn't set to low-power mode on PCH and PCH2.
This commit is contained in:
parent
6e8c6cbb85
commit
99931999d5
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_wm.c,v 1.236 2012/10/12 11:24:44 msaitoh Exp $ */
|
||||
/* $NetBSD: if_wm.c,v 1.237 2012/11/07 08:17:18 msaitoh Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc.
|
||||
|
@ -76,7 +76,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.236 2012/10/12 11:24:44 msaitoh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.237 2012/11/07 08:17:18 msaitoh Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -4372,7 +4372,7 @@ wm_init(struct ifnet *ifp)
|
|||
|
||||
reg = CSR_READ(sc, WMREG_CTRL_EXT);
|
||||
/* Enable PHY low-power state when MAC is at D3 w/o WoL */
|
||||
if ((sc->sc_type == WM_T_PCH) && (sc->sc_type == WM_T_PCH2))
|
||||
if ((sc->sc_type == WM_T_PCH) || (sc->sc_type == WM_T_PCH2))
|
||||
CSR_WRITE(sc, WMREG_CTRL_EXT, reg | CTRL_EXT_PHYPDEN);
|
||||
|
||||
/* Initialize the transmit descriptor ring. */
|
||||
|
|
Loading…
Reference in New Issue