forked from Imagelibrary/rtems
Eliminate obsolete types.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
#include <rtems/libio.h>
|
||||
|
||||
#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
|
||||
send_file_ptr (rtems_device_minor_number minor, unsigned pos, int tout)
|
||||
|
||||
@@ -57,12 +57,12 @@ boolean mc146818a_probe(
|
||||
*/
|
||||
uint32_t mc146818a_get_register(
|
||||
uint32_t ulCtrlPort,
|
||||
unsigned8 ucRegNum
|
||||
uint8_t ucRegNum
|
||||
);
|
||||
|
||||
void mc146818a_set_register(
|
||||
uint32_t ulCtrlPort,
|
||||
unsigned8 ucRegNum,
|
||||
uint8_t ucRegNum,
|
||||
uint32_t ucData
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user