From 8fd9e9787e1bdc95fd220f711ca505f636c717b3 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 7 Nov 2005 06:26:08 +0000 Subject: Eliminate unsigned32, unsigned8. --- c/src/lib/libbsp/m68k/mcf5235/console/console.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c/src/lib/libbsp/m68k/mcf5235/console/console.c b/c/src/lib/libbsp/m68k/mcf5235/console/console.c index 48f4179055..acf6daab54 100644 --- a/c/src/lib/libbsp/m68k/mcf5235/console/console.c +++ b/c/src/lib/libbsp/m68k/mcf5235/console/console.c @@ -107,9 +107,9 @@ static void IntUartSet(int minor, int baud, int databits, int parity, int stopbits, int hwflow) { int divisor; - unsigned32 clock_speed; - unsigned8 umr1 = 0; - unsigned8 umr2 = 0; + uint32_t clock_speed; + uint8_t umr1 = 0; + uint8_t umr2 = 0; struct IntUartInfoStruct *info = &IntUartInfo[minor]; int level; -- cgit v1.2.3