diff options
author | 2019-03-27 07:55:24 +0000 | |
---|---|---|
committer | 2019-03-27 07:55:24 +0000 | |
commit | 78506cbe70843cb0459755ce9671596a4f073d3e (patch) | |
tree | 3238c76af95eb8e369a9174ebd6171a134d0b7f4 | |
parent | comment out the optional "duration" argument to powersave: (diff) | |
download | wireguard-openbsd-78506cbe70843cb0459755ce9671596a4f073d3e.tar.xz wireguard-openbsd-78506cbe70843cb0459755ce9671596a4f073d3e.zip |
Add AR8152 PCI ids to alc_phy_down(), based on FreeBSD r272730.
From Brad
-rw-r--r-- | sys/dev/pci/if_alc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_alc.c b/sys/dev/pci/if_alc.c index 0014824c2db..7f455029bec 100644 --- a/sys/dev/pci/if_alc.c +++ b/sys/dev/pci/if_alc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_alc.c,v 1.46 2019/03/25 02:28:20 kevlo Exp $ */ +/* $OpenBSD: if_alc.c,v 1.47 2019/03/27 07:55:24 kevlo Exp $ */ /*- * Copyright (c) 2009, Pyun YongHyeon <yongari@FreeBSD.org> * All rights reserved. @@ -921,6 +921,8 @@ alc_phy_down(struct alc_softc *sc) break; case PCI_PRODUCT_ATTANSIC_L1D: case PCI_PRODUCT_ATTANSIC_L1D_1: + case PCI_PRODUCT_ATTANSIC_L2C_1: + case PCI_PRODUCT_ATTANSIC_L2C_2: /* * GPHY power down caused more problems on AR8151 v2.0. * When driver is reloaded after GPHY power down, |