diff options
Diffstat (limited to 'sys/dev/ep/if_ep_pccard.c')
-rw-r--r-- | sys/dev/ep/if_ep_pccard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ep/if_ep_pccard.c b/sys/dev/ep/if_ep_pccard.c index 163f168..6ef4aa9 100644 --- a/sys/dev/ep/if_ep_pccard.c +++ b/sys/dev/ep/if_ep_pccard.c @@ -72,7 +72,7 @@ ep_pccard_probe(device_t dev) struct ep_softc *sc = device_get_softc(dev); struct ep_board *epb = &sc->epb; const char *desc; - u_int16_t result; + uint16_t result; int error; error = ep_alloc(dev); @@ -180,7 +180,7 @@ static int ep_pccard_attach(device_t dev) { struct ep_softc *sc = device_get_softc(dev); - u_int16_t result; + uint16_t result; int error = 0; if ((error = ep_alloc(dev))) { |