diff options
author | Vipin Kumar <vipin.kumar@st.com> | 2010-03-02 10:46:52 +0530 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-03-07 12:36:36 -0600 |
commit | 9d69e33d8d0f112fe3a089101d023e87431684d1 (patch) | |
tree | 72ac726bef7b64f600d2d291065d69fd51edac7c /board/spear | |
parent | cc0b53c8d5d6a3f14f36982552bc3feb8ecb1db5 (diff) |
SPEAr : Supporting new mach ids for spear310 and spear320
Supporting new machine ids for SoCs spear310 and spear320
include/asm-arm/mach-types.h has to be updated before applying
this patch for build to work
Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
Diffstat (limited to 'board/spear')
-rwxr-xr-x | board/spear/spear310/spear310.c | 2 | ||||
-rwxr-xr-x | board/spear/spear320/spear320.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/spear/spear310/spear310.c b/board/spear/spear310/spear310.c index 756aa563975..03dfe16175e 100755 --- a/board/spear/spear310/spear310.c +++ b/board/spear/spear310/spear310.c @@ -32,7 +32,7 @@ int board_init(void) { - return spear_board_init(MACH_TYPE_SPEAR300); + return spear_board_init(MACH_TYPE_SPEAR310); } /* diff --git a/board/spear/spear320/spear320.c b/board/spear/spear320/spear320.c index 756aa563975..2ba2dbb5666 100755 --- a/board/spear/spear320/spear320.c +++ b/board/spear/spear320/spear320.c @@ -32,7 +32,7 @@ int board_init(void) { - return spear_board_init(MACH_TYPE_SPEAR300); + return spear_board_init(MACH_TYPE_SPEAR320); } /* |