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/if_ix.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/dev/isa/if_ix.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.29.8.1 retrieving revision 1.30 diff -u -p -r1.29.8.1 -r1.30 --- src/sys/dev/isa/if_ix.c 2009/04/28 07:35:45 1.29.8.1 +++ src/sys/dev/isa/if_ix.c 2009/03/14 15:36:18 1.30 @@ -1,4 +1,4 @@ -/* $NetBSD: if_ix.c,v 1.29.8.1 2009/04/28 07:35:45 skrll Exp $ */ +/* $NetBSD: if_ix.c,v 1.30 2009/03/14 15:36:18 dsl Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_ix.c,v 1.29.8.1 2009/04/28 07:35:45 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_ix.c,v 1.30 2009/03/14 15:36:18 dsl Exp $"); #include #include @@ -156,7 +156,10 @@ ix_read_eeprom(bus_space_tag_t iot, bus_ } static void -ix_eeprom_outbits(bus_space_tag_t iot, bus_space_handle_t ioh, int edata, int count) +ix_eeprom_outbits(iot, ioh, edata, count) + bus_space_tag_t iot; + bus_space_handle_t ioh; + int edata, count; { int ectrl, i; @@ -234,7 +237,11 @@ ix_intrhook(struct ie_softc *sc, int whe static void -ix_copyin (struct ie_softc *sc, void *dst, int offset, size_t size) +ix_copyin (sc, dst, offset, size) + struct ie_softc *sc; + void *dst; + int offset; + size_t size; { int i, dribble; u_int8_t* bptr = dst; @@ -286,7 +293,11 @@ ix_copyin (struct ie_softc *sc, void *ds } static void -ix_copyout (struct ie_softc *sc, const void *src, int offset, size_t size) +ix_copyout (sc, src, offset, size) + struct ie_softc *sc; + const void *src; + int offset; + size_t size; { int i, dribble; int osize = size; @@ -342,7 +353,9 @@ ix_copyout (struct ie_softc *sc, const v } static void -ix_bus_barrier(struct ie_softc *sc, int offset, int length, int flags) +ix_bus_barrier(sc, offset, length, flags) + struct ie_softc *sc; + int offset, length, flags; { struct ix_softc* isc = (struct ix_softc *) sc; @@ -353,7 +366,9 @@ ix_bus_barrier(struct ie_softc *sc, int } static u_int16_t -ix_read_16 (struct ie_softc *sc, int offset) +ix_read_16 (sc, offset) + struct ie_softc *sc; + int offset; { struct ix_softc* isc = (struct ix_softc *) sc; @@ -375,7 +390,10 @@ ix_read_16 (struct ie_softc *sc, int off } static void -ix_write_16 (struct ie_softc *sc, int offset, u_int16_t value) +ix_write_16 (sc, offset, value) + struct ie_softc *sc; + int offset; + u_int16_t value; { struct ix_softc* isc = (struct ix_softc *) sc; @@ -396,7 +414,9 @@ ix_write_16 (struct ie_softc *sc, int of } static void -ix_write_24 (struct ie_softc *sc, int offset, int addr) +ix_write_24 (sc, offset, addr) + struct ie_softc *sc; + int offset, addr; { char* ptr; struct ix_softc* isc = (struct ix_softc *) sc; @@ -423,7 +443,9 @@ ix_write_24 (struct ie_softc *sc, int of } static void -ix_zeromem(struct ie_softc *sc, int offset, int count) +ix_zeromem(sc, offset, count) + struct ie_softc *sc; + int offset, count; { int i; int dribble;