9
0
Fork 0

arm: at91 bootstrap: Fix menu title

It's no longer possible to assign a string to menu->display, instead
menu_add_title() must be called. Fix this.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2016-11-23 09:43:39 +01:00
parent c757c67642
commit 6dc7dae989
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ void at91_bootstrap_menu(void)
struct menu_entry *me;
m = menu_alloc();
m->display = m->name = "boot";
m->name = "boot";
menu_add_title(m, m->name);
menu_add(m);