9
0
Fork 0

arm: omap: am33xx_generic: detect more boot sources

Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
This commit is contained in:
Jan Luebbe 2013-06-10 17:41:24 +02:00 committed by Sascha Hauer
parent caa31714b5
commit 96cb84cbd5
1 changed files with 6 additions and 0 deletions

View File

@ -141,6 +141,12 @@ static int am33xx_bootsource(void)
case 0x0b:
src = BOOTSOURCE_SPI;
break;
case 0x41:
src = BOOTSOURCE_SERIAL;
break;
case 0x44:
src = BOOTSOURCE_USB;
break;
default:
src = BOOTSOURCE_UNKNOWN;
}