diff options
author | Masahiro Yamada | 2018-07-19 16:28:23 +0900 |
---|---|---|
committer | Masahiro Yamada | 2018-07-25 08:47:52 +0900 |
commit | b35fb6ace67202b6f668f744f958a5ef66665151 (patch) | |
tree | 467fb4f842a3800469f32b180b2acbc403f60077 /board/CarMediaLab | |
parent | 5f4e32d058755a93a9cc43ea9998195a3ef13aa2 (diff) |
board: constify struct node_info array
Add 'const' (also 'static' in some places) to struct node_info
arrays to save memory footprint.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'board/CarMediaLab')
-rw-r--r-- | board/CarMediaLab/flea3/flea3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/CarMediaLab/flea3/flea3.c b/board/CarMediaLab/flea3/flea3.c index c0f33b806ee..9eec1b78381 100644 --- a/board/CarMediaLab/flea3/flea3.c +++ b/board/CarMediaLab/flea3/flea3.c @@ -205,7 +205,7 @@ u32 get_board_rev(void) */ int ft_board_setup(void *blob, bd_t *bd) { - struct node_info nodes[] = { + static const struct node_info nodes[] = { { "physmap-flash.0", MTD_DEV_TYPE_NOR, }, /* NOR flash */ { "mxc_nand", MTD_DEV_TYPE_NAND, }, /* NAND flash */ }; |