From dfad46a0af14f4d6ade918da8be8b570995d31e6 Mon Sep 17 00:00:00 2001 From: jhb Date: Fri, 22 Sep 2000 08:40:05 +0000 Subject: Fix several 64-bit-ism warnings due to sizeof(int) != sizeof(void *) on the alpha. --- sys/dev/atkbdc/psm.c | 12 ++++++------ sys/isa/psm.c | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sys/dev/atkbdc/psm.c b/sys/dev/atkbdc/psm.c index bd4c341..749c693 100644 --- a/sys/dev/atkbdc/psm.c +++ b/sys/dev/atkbdc/psm.c @@ -773,7 +773,7 @@ doopen(int unit, int command_byte) /* start the watchdog timer */ sc->watchdog = FALSE; - sc->callout = timeout(psmtimeout, (void *)unit, hz*2); + sc->callout = timeout(psmtimeout, (void *)(uintptr_t)unit, hz*2); return (0); } @@ -1088,7 +1088,7 @@ psmprobe(device_t dev) RF_ACTIVE); if (sc->intr == NULL) { printf("psm%d: unable to allocate the IRQ resource (%d).\n", - unit, irq); + unit, (int)irq); endprobe(ENXIO); } else { bus_release_resource(dev, SYS_RES_IRQ, rid, sc->intr); @@ -1298,7 +1298,7 @@ psmclose(dev_t dev, int flag, int fmt, struct proc *p) splx(s); /* stop the watchdog timer */ - untimeout(psmtimeout, (void *)unit, sc->callout); + untimeout(psmtimeout, (void *)(uintptr_t)unit, sc->callout); callout_handle_init(&sc->callout); /* remove anything left in the output buffer */ @@ -1829,7 +1829,7 @@ psmtimeout(void *arg) int unit; int s; - unit = (int)arg; + unit = (int)(uintptr_t)arg; sc = devclass_get_softc(psm_devclass, unit); s = spltty(); if (sc->watchdog && kbdc_lock(sc->kbdc, TRUE)) { @@ -1840,7 +1840,7 @@ psmtimeout(void *arg) } sc->watchdog = TRUE; splx(s); - sc->callout = timeout(psmtimeout, (void *)unit, hz); + sc->callout = timeout(psmtimeout, (void *)(uintptr_t)unit, hz); } static void @@ -2681,7 +2681,7 @@ psmresume(device_t dev) /* block our watchdog timer */ sc->watchdog = FALSE; - untimeout(psmtimeout, (void *)unit, sc->callout); + untimeout(psmtimeout, (void *)(uintptr_t)unit, sc->callout); callout_handle_init(&sc->callout); /* save the current controller command byte */ diff --git a/sys/isa/psm.c b/sys/isa/psm.c index bd4c341..749c693 100644 --- a/sys/isa/psm.c +++ b/sys/isa/psm.c @@ -773,7 +773,7 @@ doopen(int unit, int command_byte) /* start the watchdog timer */ sc->watchdog = FALSE; - sc->callout = timeout(psmtimeout, (void *)unit, hz*2); + sc->callout = timeout(psmtimeout, (void *)(uintptr_t)unit, hz*2); return (0); } @@ -1088,7 +1088,7 @@ psmprobe(device_t dev) RF_ACTIVE); if (sc->intr == NULL) { printf("psm%d: unable to allocate the IRQ resource (%d).\n", - unit, irq); + unit, (int)irq); endprobe(ENXIO); } else { bus_release_resource(dev, SYS_RES_IRQ, rid, sc->intr); @@ -1298,7 +1298,7 @@ psmclose(dev_t dev, int flag, int fmt, struct proc *p) splx(s); /* stop the watchdog timer */ - untimeout(psmtimeout, (void *)unit, sc->callout); + untimeout(psmtimeout, (void *)(uintptr_t)unit, sc->callout); callout_handle_init(&sc->callout); /* remove anything left in the output buffer */ @@ -1829,7 +1829,7 @@ psmtimeout(void *arg) int unit; int s; - unit = (int)arg; + unit = (int)(uintptr_t)arg; sc = devclass_get_softc(psm_devclass, unit); s = spltty(); if (sc->watchdog && kbdc_lock(sc->kbdc, TRUE)) { @@ -1840,7 +1840,7 @@ psmtimeout(void *arg) } sc->watchdog = TRUE; splx(s); - sc->callout = timeout(psmtimeout, (void *)unit, hz); + sc->callout = timeout(psmtimeout, (void *)(uintptr_t)unit, hz); } static void @@ -2681,7 +2681,7 @@ psmresume(device_t dev) /* block our watchdog timer */ sc->watchdog = FALSE; - untimeout(psmtimeout, (void *)unit, sc->callout); + untimeout(psmtimeout, (void *)(uintptr_t)unit, sc->callout); callout_handle_init(&sc->callout); /* save the current controller command byte */ -- cgit v1.1