Commit 9057e652c30d8b2f4d9f3613a3923bd191843487

Authored by Stephen Warren
Committed by Albert ARIBAUD
1 parent 4850ab9a4f

tegra2: Fix default RAM size selection in odmdata

A value of 0 in the odmdata RAM size field means default, which is 512MB
not 1GB. Fix this. For reference, see:

http://nv-tegra.nvidia.com/gitweb/?p=linux-2.6.git;a=blob;\
f=arch/arm/mach-tegra/odm_kit/query/harmony/tegra_devkit_custopt.h;\
h=1ec7010911454f19a5018952fd245785a62c59ad;\
hb=0e52d7fe25b11a656c376a37890be219470661fb

v2: New patch

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arm/cpu/armv7/tegra2/board.c
... ... @@ -58,9 +58,9 @@
58 58 case 1:
59 59 return 0x10000000; /* 256 MB */
60 60 case 2:
  61 + default:
61 62 return 0x20000000; /* 512 MB */
62 63 case 3:
63   - default:
64 64 return 0x40000000; /* 1GB */
65 65 }
66 66 }