summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2005-01-20 19:32:37 +0000
committerimp <imp@FreeBSD.org>2005-01-20 19:32:37 +0000
commitd7a3cd480757476d9b68913a296da7e21162ff12 (patch)
treedbc046967399bc1c57bc68949e80b48f1d4f1a2a /sys
parenta4a7c3bba60a94edc4e0819d0615eb6e4f5089c6 (diff)
downloadFreeBSD-src-d7a3cd480757476d9b68913a296da7e21162ff12.zip
FreeBSD-src-d7a3cd480757476d9b68913a296da7e21162ff12.tar.gz
u_intXX_t -> uintXX_t
Fix a comment
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/xe/if_xe_pccard.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/xe/if_xe_pccard.c b/sys/dev/xe/if_xe_pccard.c
index 8d9f767..266f11d 100644
--- a/sys/dev/xe/if_xe_pccard.c
+++ b/sys/dev/xe/if_xe_pccard.c
@@ -98,8 +98,8 @@ extern int xe_debug;
struct xe_pccard_product {
struct pccard_product product;
- u_int16_t prodext;
- u_int16_t flags;
+ uint16_t prodext;
+ uint16_t flags;
};
static const struct xe_pccard_product xe_pccard_products[] = {
@@ -199,8 +199,8 @@ xe_macfix(device_t dev, int offset)
bus_space_handle_t bsh;
struct resource *r;
int rid, i;
- u_int8_t cisdata[9];
- u_int8_t required[6] = { 0x08, PCCARD_TPLFE_TYPE_LAN_NID, ETHER_ADDR_LEN,
+ uint8_t cisdata[9];
+ uint8_t required[6] = { 0x08, PCCARD_TPLFE_TYPE_LAN_NID, ETHER_ADDR_LEN,
XE_MAC_ADDR_0, XE_MAC_ADDR_1, XE_MAC_ADDR_2 };
DEVPRINTF(2, (dev, "macfix\n"));
@@ -261,8 +261,8 @@ static int
xe_pccard_probe(device_t dev)
{
struct xe_softc *scp = (struct xe_softc *) device_get_softc(dev);
- u_int32_t vendor,product;
- u_int16_t prodext;
+ uint32_t vendor,product;
+ uint16_t prodext;
const char* vendor_str = NULL;
const char* product_str = NULL;
const char* cis4_str = NULL;
@@ -401,7 +401,7 @@ static int
xe_pccard_product_match(device_t dev, const struct pccard_product* ent, int vpfmatch)
{
const struct xe_pccard_product* xpp;
- u_int16_t prodext;
+ uint16_t prodext;
DEVPRINTF(2, (dev, "pccard_product_match\n"));
@@ -420,12 +420,12 @@ static int
xe_pccard_match(device_t dev)
{
int error = 0;
- u_int32_t fcn = PCCARD_FUNCTION_UNSPEC;
+ uint32_t fcn = PCCARD_FUNCTION_UNSPEC;
const struct pccard_product *pp;
DEVPRINTF(2, (dev, "pccard_match\n"));
- /* Make sure we're a network driver */
+ /* Make sure we're a network function */
error = pccard_get_function(dev, &fcn);
if (error != 0)
return (error);
OpenPOWER on IntegriCloud