Module Name: src
Committed By: skrll
Date: Mon May 18 05:13:26 UTC 2009
Modified Files:
src/sys/arch/hp700/dev: com_dino.c
Log Message:
u_intXX_t -> uintXX_t
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/hp700/dev/com_dino.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/hp700/dev/com_dino.c
diff -u src/sys/arch/hp700/dev/com_dino.c:1.7 src/sys/arch/hp700/dev/com_dino.c:1.8
--- src/sys/arch/hp700/dev/com_dino.c:1.7 Mon May 18 04:58:23 2009
+++ src/sys/arch/hp700/dev/com_dino.c Mon May 18 05:13:26 2009
@@ -53,15 +53,15 @@
};
struct com_dino_regs {
- u_int8_t reset;
- u_int8_t pad0[3];
- u_int8_t test;
+ uint8_t reset;
+ uint8_t pad0[3];
+ uint8_t test;
#define COM_DINO_PAR_LOOP 0x01
#define COM_DINO_CLK_SEL 0x02
- u_int8_t pad1[3];
- u_int32_t iodc;
- u_int8_t pad2[0x54];
- u_int8_t dither;
+ uint8_t pad1[3];
+ uint32_t iodc;
+ uint8_t pad2[0x54];
+ uint8_t dither;
};
int com_dino_match(device_t, cfdata_t, void *);