Module Name: src Committed By: dyoung Date: Sun Mar 14 21:25:59 UTC 2010
Modified Files: src/sys/dev/ic: athvar.h atwvar.h Log Message: Use device_suspensor_t instead of struct device_suspensor. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/dev/ic/athvar.h cvs rdiff -u -r1.36 -r1.37 src/sys/dev/ic/atwvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/ic/athvar.h diff -u src/sys/dev/ic/athvar.h:1.31 src/sys/dev/ic/athvar.h:1.32 --- src/sys/dev/ic/athvar.h:1.31 Wed Feb 24 22:37:57 2010 +++ src/sys/dev/ic/athvar.h Sun Mar 14 21:25:59 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: athvar.h,v 1.31 2010/02/24 22:37:57 dyoung Exp $ */ +/* $NetBSD: athvar.h,v 1.32 2010/03/14 21:25:59 dyoung Exp $ */ /*- * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting @@ -175,7 +175,7 @@ struct ath_softc { device_t sc_dev; - struct device_suspensor sc_suspensor; + device_suspensor_t sc_suspensor; pmf_qual_t sc_qual; struct ethercom sc_ec; /* interface common */ struct ath_stats sc_stats; /* interface statistics */ Index: src/sys/dev/ic/atwvar.h diff -u src/sys/dev/ic/atwvar.h:1.36 src/sys/dev/ic/atwvar.h:1.37 --- src/sys/dev/ic/atwvar.h:1.36 Wed Feb 24 22:37:58 2010 +++ src/sys/dev/ic/atwvar.h Sun Mar 14 21:25:59 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: atwvar.h,v 1.36 2010/02/24 22:37:58 dyoung Exp $ */ +/* $NetBSD: atwvar.h,v 1.37 2010/03/14 21:25:59 dyoung Exp $ */ /* * Copyright (c) 2003, 2004 The NetBSD Foundation, Inc. All rights reserved. @@ -168,7 +168,7 @@ struct atw_softc { device_t sc_dev; - struct device_suspensor sc_suspensor; + device_suspensor_t sc_suspensor; pmf_qual_t sc_qual; struct ethercom sc_ec;