forked from Imagelibrary/rtems
Add missing prototypes.
This commit is contained in:
@@ -18,7 +18,7 @@
|
|||||||
* LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
|
* LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void bsp_cleanup()
|
void bsp_cleanup(void)
|
||||||
{
|
{
|
||||||
/* TODO - Add something BSP specific here */
|
/* TODO - Add something BSP specific here */
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
|
|
||||||
static rtems_status_code mpc55xx_dspi_init()
|
static rtems_status_code mpc55xx_dspi_init(void)
|
||||||
{
|
{
|
||||||
int rv = 0;
|
int rv = 0;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
@@ -122,7 +122,7 @@ sd_card_driver_entry sd_card_driver_table [SD_CARD_NUMBER] = { {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
rtems_status_code mpc55xx_sd_card_init()
|
rtems_status_code mpc55xx_sd_card_init(void)
|
||||||
{
|
{
|
||||||
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
||||||
int rv = 0;
|
int rv = 0;
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ rtems_task test_sd_card( rtems_task_argument arg);
|
|||||||
|
|
||||||
static rtems_task test_mpc55xx_intc( rtems_task_argument arg);
|
static rtems_task test_mpc55xx_intc( rtems_task_argument arg);
|
||||||
|
|
||||||
rtems_status_code mpc55xx_dspi_register()
|
rtems_status_code mpc55xx_dspi_register(void)
|
||||||
{
|
{
|
||||||
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
||||||
int rv = 0;
|
int rv = 0;
|
||||||
@@ -547,7 +547,7 @@ rtems_task test_sd_card( rtems_task_argument arg)
|
|||||||
static char inbuf [BUFSIZE];
|
static char inbuf [BUFSIZE];
|
||||||
static char outbuf [BUFSIZE];
|
static char outbuf [BUFSIZE];
|
||||||
|
|
||||||
static rtems_status_code test_mpc55xx_edma()
|
static rtems_status_code test_mpc55xx_edma(void)
|
||||||
{
|
{
|
||||||
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
||||||
int rv = 0;
|
int rv = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user