diff options
| author | Tom Rini <trini@ti.com> | 2013-03-31 08:43:12 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-31 08:43:12 -0400 | 
| commit | 5644369450635fa5c2967bee55b1ac41f6e988d0 (patch) | |
| tree | 29c272d5a27389635f37171ad142174fb039b0d8 /common/cmd_pxe.c | |
| parent | 1d3dea12e21275eab5af1b50ef4a3be89cfffc15 (diff) | |
| parent | d999398822c6d57335677bc4ecc6bea4a569492f (diff) | |
| download | olio-uboot-2014.01-5644369450635fa5c2967bee55b1ac41f6e988d0.tar.xz olio-uboot-2014.01-5644369450635fa5c2967bee55b1ac41f6e988d0.zip | |
Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
Diffstat (limited to 'common/cmd_pxe.c')
| -rw-r--r-- | common/cmd_pxe.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index ee75db968..2dbd49cbd 100644 --- a/common/cmd_pxe.c +++ b/common/cmd_pxe.c @@ -1280,7 +1280,8 @@ static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg)  	/*  	 * Create a menu and add items for all the labels.  	 */ -	m = menu_create(cfg->title, cfg->timeout, cfg->prompt, label_print); +	m = menu_create(cfg->title, cfg->timeout, cfg->prompt, label_print, +			NULL, NULL);  	if (!m)  		return NULL; |