From: chris Date: Thu, 9 Mar 2023 00:13:47 +0000 (+0000) Subject: Fix comment to reflect the disabled status of Energy Efficient Ethernet. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=eb7cd0035470442bb2d6a5b4fe84b701cfeb379a;p=openbsd Fix comment to reflect the disabled status of Energy Efficient Ethernet. Intel just disabled EEE for 1Gbps and 2.5Gbps modes on both i225 and i226 chips due to bugs. We already had it this way. ok patrick@ kevlo@ --- diff --git a/sys/dev/pci/if_igc.c b/sys/dev/pci/if_igc.c index c4efecf97b3..e76ffcbfd1f 100644 --- a/sys/dev/pci/if_igc.c +++ b/sys/dev/pci/if_igc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_igc.c,v 1.11 2023/02/09 21:21:27 naddy Exp $ */ +/* $OpenBSD: if_igc.c,v 1.12 2023/03/09 00:13:47 chris Exp $ */ /*- * SPDX-License-Identifier: BSD-2-Clause * @@ -234,7 +234,7 @@ igc_attach(struct device *parent, struct device *self, void *aux) if (igc_check_reset_block(hw)) printf(": PHY reset is blocked due to SOL/IDER session\n"); - /* Enable Energy Efficient Ethernet. */ + /* Disable Energy Efficient Ethernet. */ sc->hw.dev_spec._i225.eee_disable = true; igc_reset_hw(hw);