diff options
| author | Breno Lima <[email protected]> | 2016-12-01 16:37:38 -0200 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2016-12-16 10:20:17 +0100 |
| commit | 72d900bdbc8bf58d9dfb646ecfcc0882031034ae (patch) | |
| tree | b0a9c087483a8ab128ccc9d612e537312c18b7d5 | |
| parent | 4a056c4504d078356fa3afcaed963d31d5e901c7 (diff) | |
udoo_neo: Staticize board_string()
Change board_string() function to static because it's being used locally.
Signed-off-by: Breno Lima <[email protected]>
Reviewed-by: Fabio Estevam <[email protected]>
| -rw-r--r-- | board/udoo/neo/neo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/udoo/neo/neo.c b/board/udoo/neo/neo.c index efe86055408..cfeed6f8d76 100644 --- a/board/udoo/neo/neo.c +++ b/board/udoo/neo/neo.c @@ -176,7 +176,7 @@ int board_mmc_init(bd_t *bis) return fsl_esdhc_initialize(bis, &usdhc_cfg[0]); } -char *board_string(void) +static char *board_string(void) { switch (get_board_value()) { case UDOO_NEO_TYPE_BASIC: |
