From 6dc7dae989aa9957f8c20474c66fd0d02da1bdd6 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 23 Nov 2016 09:43:39 +0100 Subject: [PATCH] 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 --- arch/arm/mach-at91/bootstrap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-at91/bootstrap.c b/arch/arm/mach-at91/bootstrap.c index 8502bb00f..9dd575b74 100644 --- a/arch/arm/mach-at91/bootstrap.c +++ b/arch/arm/mach-at91/bootstrap.c @@ -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);