OMAP5: hwinit: Add the missing break statement
The break statement is missing in init_omap_revision function, resulting in a wrong revision identification. So fixing this. Signed-off-by: R Sricharan <r.sricharan@ti.com>
This commit is contained in:
parent
8de17f4617
commit
cdd50a8d07
|
@ -155,6 +155,7 @@ void init_omap_revision(void)
|
|||
switch (rev) {
|
||||
case MIDR_CORTEX_A15_R0P0:
|
||||
*omap5_revision = OMAP5430_ES1_0;
|
||||
break;
|
||||
default:
|
||||
*omap5_revision = OMAP5430_SILICON_ID_INVALID;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue