From 155ae49e5cefc7f22a0d316f90e098607c6b8f9e Mon Sep 17 00:00:00 2001 From: Michael Knudsen Date: Thu, 16 Apr 2009 20:16:05 +0000 Subject: Change some parameter types from int to u_int8_t since the bus_space_.. API uses that. --- sys/dev/isa/sch311x.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/sys/dev/isa/sch311x.c b/sys/dev/isa/sch311x.c index 7ab4720ae82..7425098e234 100644 --- a/sys/dev/isa/sch311x.c +++ b/sys/dev/isa/sch311x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sch311x.c,v 1.7 2009/04/15 20:21:09 mk Exp $ */ +/* $OpenBSD: sch311x.c,v 1.8 2009/04/16 20:16:04 mk Exp $ */ /* * Copyright (c) 2008 Mark Kettenis * Copyright (c) 2009 Michael Knudsen @@ -168,14 +168,14 @@ static __inline void schsio_config_disable(bus_space_tag_t iot, bus_space_handle_t ioh); u_int8_t schsio_config_read(bus_space_tag_t iot, bus_space_handle_t ioh, - int reg); -void schsio_config_write(bus_space_tag_t iot, - bus_space_handle_t ioh, int reg, u_int8_t val); + u_int8_t reg); +void schsio_config_write(bus_space_tag_t iot, bus_space_handle_t ioh, + u_int8_t reg, u_int8_t val); /* HWM prototypes */ void schsio_hwm_init(struct schsio_softc *sc); void schsio_hwm_update(void *arg); -u_int8_t schsio_hwm_read(struct schsio_softc *sc, int reg); +u_int8_t schsio_hwm_read(struct schsio_softc *sc, u_int8_t reg); /* Watchdog prototypes */ @@ -205,15 +205,16 @@ schsio_config_disable(bus_space_tag_t iot, bus_space_handle_t ioh) } u_int8_t -schsio_config_read(bus_space_tag_t iot, bus_space_handle_t ioh, int reg) +schsio_config_read(bus_space_tag_t iot, bus_space_handle_t ioh, + u_int8_t reg) { bus_space_write_1(iot, ioh, SCHSIO_PORT_INDEX, reg); return (bus_space_read_1(iot, ioh, SCHSIO_PORT_DATA)); } void -schsio_config_write(bus_space_tag_t iot, bus_space_handle_t ioh, int reg, - u_int8_t val) +schsio_config_write(bus_space_tag_t iot, bus_space_handle_t ioh, + u_int8_t reg, u_int8_t val) { bus_space_write_1(iot, ioh, SCHSIO_PORT_INDEX, reg); bus_space_write_1(iot, ioh, SCHSIO_PORT_DATA, val); @@ -446,7 +447,7 @@ schsio_hwm_update(void *arg) } u_int8_t -schsio_hwm_read(struct schsio_softc *sc, int reg) +schsio_hwm_read(struct schsio_softc *sc, u_int8_t reg) { bus_space_write_1(sc->sc_iot, sc->sc_ioh_rr, SCHSIO_HWM_INDEX, reg); return (bus_space_read_1(sc->sc_iot, sc->sc_ioh_rr, SCHSIO_HWM_DATA)); -- cgit v1.2.3