diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-01-21 22:37:57 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-01-21 22:37:57 +0000 |
commit | 60071449772c4d82d511fbc24253f5ca56af72b0 (patch) | |
tree | 3a717101fccfb1049447c74bd77a7f8e434b590f /sys | |
parent | 0d89f690d9d5da2998ca86d3bb94685d8a7b4ce0 (diff) |
Use MII_ANEGTICKS_GIGE instead of MII_ANEGTICKS.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/mii/rgephy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/rgephy.c b/sys/dev/mii/rgephy.c index 747cefec7a4..2f04ebcd870 100644 --- a/sys/dev/mii/rgephy.c +++ b/sys/dev/mii/rgephy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rgephy.c,v 1.23 2006/12/31 15:04:33 krw Exp $ */ +/* $OpenBSD: rgephy.c,v 1.24 2007/01/21 22:37:56 kettenis Exp $ */ /* * Copyright (c) 2003 * Bill Paul <wpaul@windriver.com>. All rights reserved. @@ -128,7 +128,7 @@ rgephyattach(struct device *parent, struct device *self, void *aux) sc->mii_funcs = &rgephy_funcs; sc->mii_pdata = mii; sc->mii_flags = ma->mii_flags; - sc->mii_anegticks = MII_ANEGTICKS; + sc->mii_anegticks = MII_ANEGTICKS_GIGE; sc->mii_flags |= MIIF_NOISOLATE; |