2005-11-12 Ralf Corsepius <ralf.corsepius@rtems.org>

* bsp_specs: Remove %cpp.
	* console/console.c: Eliminate obsolete types.
This commit is contained in:
Ralf Corsepius
2005-11-12 07:08:33 +00:00
parent b1a09175e6
commit bcd0867d04
3 changed files with 8 additions and 7 deletions

View File

@@ -1,3 +1,8 @@
2005-11-12 Ralf Corsepius <ralf.corsepius@rtems.org>
* bsp_specs: Remove %cpp.
* console/console.c: Eliminate obsolete types.
2005-11-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* include/bsp.h: Eliminate unsigned32.

View File

@@ -1,12 +1,8 @@
%rename cpp old_cpp
%rename lib old_lib
%rename endfile old_endfile
%rename startfile old_startfile
%rename link old_link
*cpp:
%(old_cpp) %{qrtems: -D__embedded__} -Asystem(embedded)
*lib:
%{!qrtems: %(old_lib)} %{!nostdlib: %{qrtems: --start-group \
%{!qrtems_debug: -lrtemsbsp -lrtemscpu} %{qrtems_debug: -lrtemsbsp_g -lrtemscpu_g} \

View File

@@ -110,9 +110,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;