diff options
Diffstat (limited to 'arch/arm/cpu/armv7/mx5/soc.c')
| -rw-r--r-- | arch/arm/cpu/armv7/mx5/soc.c | 10 | 
1 files changed, 3 insertions, 7 deletions
| diff --git a/arch/arm/cpu/armv7/mx5/soc.c b/arch/arm/cpu/armv7/mx5/soc.c index 6f4e8db74..40b8b5640 100644 --- a/arch/arm/cpu/armv7/mx5/soc.c +++ b/arch/arm/cpu/armv7/mx5/soc.c @@ -65,14 +65,10 @@ u32 get_cpu_rev(void)  		break;  	}  #else -	switch (reg) { -	case 0x20: -		system_rev |= CHIP_REV_2_0; -		break; -	default: +	if (reg < 0x20)  		system_rev |= CHIP_REV_1_0; -		break; -	} +	else +		system_rev |= reg;  #endif  	return system_rev;  } |