summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-12 10:06:47 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-13 10:33:27 -0500
commit59888da70af9d61ffa9eda0bb1deae89d79995e4 (patch)
treed9ccbd0080acec7d33ef7555a9fe805c9c269c5f /c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c
parentsim68000/clock/clockdrv.c: Fix warnings (diff)
downloadrtems-59888da70af9d61ffa9eda0bb1deae89d79995e4.tar.bz2
powerpc/haleakala: Fix warnings
Diffstat (limited to 'c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c b/c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c
index 443e45476c..4159d48768 100644
--- a/c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/haleakala/startup/bspstart.c
@@ -105,7 +105,7 @@ InitUARTClock(void)
mtsdr(SDR0_UART0,reg);
}
-void GPIO_AlternateSelect(int bitnum, int source)
+static void GPIO_AlternateSelect(int bitnum, int source)
/* PPC405EX: select a GPIO function for the specified pin */
{
int shift;
@@ -124,7 +124,7 @@ void GPIO_AlternateSelect(int bitnum, int source)
}
}
-void Init_FPGA(void)
+static void Init_FPGA(void)
{
/* Have to write to the FPGA to enable the UART drivers */
/* Have to enable CS2 as an output in GPIO to get the FPGA working */
@@ -161,9 +161,6 @@ BSP_polling_getchar_function_type BSP_poll_char = NULL;
void bsp_start( void )
{
- ppc_cpu_id_t myCpu;
- ppc_cpu_revision_t myCpuRevision;
-
/* Get the UART clock initialized first in case we call printk */
InitUARTClock();
@@ -175,8 +172,8 @@ void bsp_start( void )
* function store the result in global variables
* so that it can be used later...
*/
- myCpu = get_ppc_cpu_type();
- myCpuRevision = get_ppc_cpu_revision();
+ get_ppc_cpu_type();
+ get_ppc_cpu_revision();
/*
* initialize the device driver parameters
@@ -205,7 +202,7 @@ void bsp_start( void )
BSP_rtems_irq_mng_init(0);
}
-void BSP_ask_for_reset(void)
+static void BSP_ask_for_reset(void)
{
printk("system stopped, press RESET");
while(1) {};
@@ -219,6 +216,7 @@ void BSP_panic(char *s)
void _BSP_Fatal_error(unsigned int v)
{
- printk("%s PANIC ERROR %x\n",_RTEMS_version, v);
+ printk("%s FATAL ERROR %x\n",_RTEMS_version, v);
BSP_ask_for_reset();
}
+