diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-11 21:49:06 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-03-23 15:14:52 -0400 |
commit | 2decc2a8d17a5397cb5956e46c8466c736e305a2 (patch) | |
tree | c55d16f1298f4828d59efe10509f296f53bc7a40 | |
parent | 974473caa732f63312687ef2bd2d22dad8e99b9a (diff) | |
download | u-boot-imx-2decc2a8d17a5397cb5956e46c8466c736e305a2.zip u-boot-imx-2decc2a8d17a5397cb5956e46c8466c736e305a2.tar.gz u-boot-imx-2decc2a8d17a5397cb5956e46c8466c736e305a2.tar.bz2 |
Blackfin: mark bfin_reset static
The function is only used locally, so mark it static.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | cpu/blackfin/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/blackfin/reset.c b/cpu/blackfin/reset.c index 284cea5..e3be740 100644 --- a/cpu/blackfin/reset.c +++ b/cpu/blackfin/reset.c @@ -20,7 +20,7 @@ * the core reset. */ __attribute__ ((__l1_text__, __noreturn__)) -void bfin_reset(void) +static void bfin_reset(void) { /* Wait for completion of "system" events such as cache line * line fills so that we avoid infinite stalls later on as |