Eliminate obsolete types.

This commit is contained in:
Ralf Corsepius
2005-11-06 09:15:50 +00:00
parent f2535dfe2f
commit 28fcdde297
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
#include <rtems/libio.h> #include <rtems/libio.h>
#define EEPROM_PG_SZ 32 #define EEPROM_PG_SZ 32
#define ALGN(x) (((unsigned32)(x) + EEPROM_PG_SZ) & ~(EEPROM_PG_SZ-1)) #define ALGN(x) (((uint32_t)(x) + EEPROM_PG_SZ) & ~(EEPROM_PG_SZ-1))
static rtems_status_code static rtems_status_code
send_file_ptr (rtems_device_minor_number minor, unsigned pos, int tout) send_file_ptr (rtems_device_minor_number minor, unsigned pos, int tout)

View File

@@ -57,12 +57,12 @@ boolean mc146818a_probe(
*/ */
uint32_t mc146818a_get_register( uint32_t mc146818a_get_register(
uint32_t ulCtrlPort, uint32_t ulCtrlPort,
unsigned8 ucRegNum uint8_t ucRegNum
); );
void mc146818a_set_register( void mc146818a_set_register(
uint32_t ulCtrlPort, uint32_t ulCtrlPort,
unsigned8 ucRegNum, uint8_t ucRegNum,
uint32_t ucData uint32_t ucData
); );