2008-08-19 Joel Sherrill <joel.sherrill@OARcorp.com>

* libchip/shmdr/shm_driver.h: Correct prototypes.
This commit is contained in:
Joel Sherrill
2008-08-19 15:22:41 +00:00
parent f4e7c5190c
commit aec17f1a2c
2 changed files with 10 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
2008-08-19 Joel Sherrill <joel.sherrill@OARcorp.com>
* libchip/shmdr/shm_driver.h: Correct prototypes.
2008-08-19 Sebastian Huber <sebastian.huber@embedded-brains.de> 2008-08-19 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libchip/display/disp_hcms29xx.c: Fixed warnings. Initialized * libchip/display/disp_hcms29xx.c: Fixed warnings. Initialized

View File

@@ -423,7 +423,7 @@ struct shm_config_info {
vol_u32 *base; /* base address of SHM */ vol_u32 *base; /* base address of SHM */
vol_u32 length; /* length (in bytes) of SHM */ vol_u32 length; /* length (in bytes) of SHM */
vol_u32 format; /* SHM is big or little endian */ vol_u32 format; /* SHM is big or little endian */
uint32_t (*convert)();/* neutral conversion routine */ uint32_t (*convert)( uint32_t );/* neutral conversion routine */
vol_u32 poll_intr;/* POLLED or INTR driven mode */ vol_u32 poll_intr;/* POLLED or INTR driven mode */
void (*cause_intr)( uint32_t); void (*cause_intr)( uint32_t);
Shm_Interrupt_information Intr; /* cause intr information */ Shm_Interrupt_information Intr; /* cause intr information */
@@ -478,12 +478,12 @@ void Shm_Locked_queue_Initialize(
/* Shm_Unlock is CPU dependent */ /* Shm_Unlock is CPU dependent */
/* portable routines */ /* portable routines */
void Init_env_pool(); void Init_env_pool( void );
void Shm_Print_statistics( void ); void Shm_Print_statistics( void );
void MPCI_Fatal( Internal_errors_Source, boolean, uint32_t); void MPCI_Fatal( Internal_errors_Source, boolean, uint32_t);
rtems_task Shm_Cause_interrupt( uint32_t); rtems_task Shm_Cause_interrupt( uint32_t );
void Shm_Poll(); void Shm_Poll( void );
void Shm_setclockvec(); void Shm_setclockvec( void );
void Shm_Convert_packet( rtems_packet_prefix * ); void Shm_Convert_packet( rtems_packet_prefix * );
/* CPU specific routines are inlined in shmcpu.h */ /* CPU specific routines are inlined in shmcpu.h */
@@ -491,7 +491,7 @@ void Shm_Convert_packet( rtems_packet_prefix * );
/* target specific routines */ /* target specific routines */
void *Shm_Convert_address( void * ); void *Shm_Convert_address( void * );
void Shm_Get_configuration( uint32_t, shm_config_table ** ); void Shm_Get_configuration( uint32_t, shm_config_table ** );
void Shm_isr(); void Shm_isr( void );
void Shm_setvec( void ); void Shm_setvec( void );
void Shm_Initialize_lock( Shm_Locked_queue_Control * ); void Shm_Initialize_lock( Shm_Locked_queue_Control * );