diff options
author | bde <bde@FreeBSD.org> | 2003-08-05 20:11:50 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2003-08-05 20:11:50 +0000 |
commit | e6b31b28140188d90a9dd49e4543af529f64843f (patch) | |
tree | 14a44882470d4b79fe3c927933ed33762017650b | |
parent | 52bff5229a998fce244a92247317fb6536b7a8d8 (diff) | |
download | FreeBSD-src-e6b31b28140188d90a9dd49e4543af529f64843f.zip FreeBSD-src-e6b31b28140188d90a9dd49e4543af529f64843f.tar.gz |
Don't use pessimal (u_short) types for i/o ports. This is mainly for
completenss. The pessimization is tiny compared with i/o port slowness
except on very old machines, but code that used signed short types for
i/o ports was unpessimized long ago, and the macro that detected it
recently started working for u_short types too. Use of bus space
should have made this moot long ago.
Not tested at runtime by: bde
-rw-r--r-- | sys/dev/digi/digi.h | 4 | ||||
-rw-r--r-- | sys/i386/isa/if_rdp.c | 2 | ||||
-rw-r--r-- | sys/i386/isa/spic.c | 2 | ||||
-rw-r--r-- | sys/i386/isa/wt.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/digi/digi.h b/sys/dev/digi/digi.h index e8f9e0f..c5c1a4c 100644 --- a/sys/dev/digi/digi.h +++ b/sys/dev/digi/digi.h @@ -152,8 +152,8 @@ struct digi_softc { const char *name; enum digi_board_status status; ushort numports; /* number of ports on card */ - ushort port; /* I/O port */ - ushort wport; /* window select I/O port */ + u_int port; /* I/O port */ + u_int wport; /* window select I/O port */ struct { struct resource *mem; diff --git a/sys/i386/isa/if_rdp.c b/sys/i386/isa/if_rdp.c index be8a2a7..0fda869 100644 --- a/sys/i386/isa/if_rdp.c +++ b/sys/i386/isa/if_rdp.c @@ -121,7 +121,7 @@ struct rdp_softc { /* * local stuff, somewhat sorted by memory alignment class */ - u_short baseaddr; /* IO port address */ + u_int baseaddr; /* IO port address */ u_short txsize; /* tx size for next (buffered) packet, * there's only one additional packet * we can buffer, thus a single variable diff --git a/sys/i386/isa/spic.c b/sys/i386/isa/spic.c index 9eace58..a0afcb9 100644 --- a/sys/i386/isa/spic.c +++ b/sys/i386/isa/spic.c @@ -97,7 +97,7 @@ static struct cdevsw spic_cdevsw = { #define SCBUFLEN 128 struct spic_softc { - u_short sc_port_addr; + u_int sc_port_addr; u_char sc_intr; struct resource *sc_port_res,*sc_intr_res; int sc_port_rid,sc_intr_rid; diff --git a/sys/i386/isa/wt.c b/sys/i386/isa/wt.c index 1f9d16e..22257f7 100644 --- a/sys/i386/isa/wt.c +++ b/sys/i386/isa/wt.c @@ -157,7 +157,7 @@ typedef struct { wtstatus_t error; /* status of controller */ - unsigned short DATAPORT, CMDPORT, STATPORT, CTLPORT, SDMAPORT, RDMAPORT; + unsigned DATAPORT, CMDPORT, STATPORT, CTLPORT, SDMAPORT, RDMAPORT; unsigned char BUSY, NOEXCEP, RESETMASK, RESETVAL; unsigned char ONLINE, RESET, REQUEST, IEN; } wtinfo_t; |