From 7294054b3072d00808d807b6657ff6db12afd5fe Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 20 Oct 2014 14:13:47 -0500 Subject: [PATCH] powerpc/shared/startup/bspstart.c: Fix warning for mvme2100 --- c/src/lib/libbsp/powerpc/shared/startup/bspstart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/src/lib/libbsp/powerpc/shared/startup/bspstart.c b/c/src/lib/libbsp/powerpc/shared/startup/bspstart.c index 1d5d5d56f2..08dc12b225 100644 --- a/c/src/lib/libbsp/powerpc/shared/startup/bspstart.c +++ b/c/src/lib/libbsp/powerpc/shared/startup/bspstart.c @@ -123,7 +123,7 @@ unsigned int EUMBBAR; * Register (EUMBBAR) as read from the processor configuration register using * Processor Address Map B (CHRP). */ -unsigned int get_eumbbar(void) { +static unsigned int get_eumbbar(void) { out_le32( (volatile unsigned *)0xfec00000, 0x80000078 ); return in_le32( (volatile unsigned *)0xfee00000 ); }