Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/dev/isa/smscvar.h,v retrieving revision 1.1 retrieving revision 1.1.10.1 diff -u -p -r1.1 -r1.1.10.1 --- src/sys/dev/isa/smscvar.h 2007/06/01 14:11:59 1.1 +++ src/sys/dev/isa/smscvar.h 2007/11/21 21:55:26 1.1.10.1 @@ -1,4 +1,4 @@ -/* $NetBSD: smscvar.h,v 1.1 2007/06/01 14:11:59 blymn Exp $ */ +/* $NetBSD: smscvar.h,v 1.1.10.1 2007/11/21 21:55:26 joerg Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -81,16 +81,16 @@ #define SMSC_MAX_SENSORS 0x08 /* 4 temp sensors, 4 fan sensors */ struct smsc_softc { - struct device sc_dev; + struct device sc_dev; - bus_space_tag_t smsc_iot; - bus_space_handle_t smsc_ioh; + bus_space_tag_t sc_iot; + bus_space_handle_t sc_ioh; - int sc_flags; - struct sysmon_envsys *smsc_sysmon; - uint8_t numsensors; + int sc_flags; + struct sysmon_envsys *sc_sme; + envsys_data_t sc_sensor[SMSC_MAX_SENSORS]; - uint8_t regs[SMSC_MAX_SENSORS]; + uint8_t sc_regs[SMSC_MAX_SENSORS]; }; #endif /* _DEV_SMSC47B397VAR_H_ */