u_int8_t -> uint8_t

This commit is contained in:
tsutsui 2010-03-13 15:26:38 +00:00
parent 5c2e2150a5
commit b559dc4595
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ne2000var.h,v 1.25 2010/03/03 13:39:57 tsutsui Exp $ */
/* $NetBSD: ne2000var.h,v 1.26 2010/03/13 15:26:38 tsutsui Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -54,7 +54,7 @@ struct ne2000_softc {
#define NE2000_QUIRK_8BIT 0x0001 /* force 8bit mode even on NE2000 */
};
int ne2000_attach(struct ne2000_softc *, u_int8_t *);
int ne2000_attach(struct ne2000_softc *, uint8_t *);
int ne2000_detect(bus_space_tag_t, bus_space_handle_t,
bus_space_tag_t, bus_space_handle_t);
int ne2000_detach(struct ne2000_softc *, int);