diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-05-17 23:11:21 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-05-17 23:11:21 +0200 | 
| commit | 1a1e6bf12b3155f47d2661793ceee3daded0d937 (patch) | |
| tree | 9e1b80ccd824be1c6884a0af31a76c79bf4c7c54 /common/ddr_spd.c | |
| parent | a2a0a7171303de5d8ce099344efde2e29ee36eb0 (diff) | |
| parent | bcb6c2bb84705bfd73eed5c9a31e9ff24833ee8c (diff) | |
| download | olio-uboot-2014.01-1a1e6bf12b3155f47d2661793ceee3daded0d937.tar.xz olio-uboot-2014.01-1a1e6bf12b3155f47d2661793ceee3daded0d937.zip  | |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
Diffstat (limited to 'common/ddr_spd.c')
| -rw-r--r-- | common/ddr_spd.c | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/common/ddr_spd.c b/common/ddr_spd.c index c058e4f18..a7a30de22 100644 --- a/common/ddr_spd.c +++ b/common/ddr_spd.c @@ -20,11 +20,15 @@ spd_check(const u8 *buf, u8 spd_rev, u8 spd_cksum)  	 * Check SPD revision supported  	 * Rev 1.2 or less supported by this code  	 */ -	if (spd_rev > 0x12) { +	if (spd_rev >= 0x20) {  		printf("SPD revision %02X not supported by this code\n",  		       spd_rev);  		return 1;  	} +	if (spd_rev > 0x13) { +		printf("SPD revision %02X not verified by this code\n", +		       spd_rev); +	}  	/*  	 * Calculate checksum  |