summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-08-29 16:14:11 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-08-29 16:14:11 +0200
commit556bfc1f54e94ff98057c1aee2a3499912dc91d1 (patch)
tree98bfc48da485e15bd8588cf5038726bee09db1f4 /board
parent768698925efe0a13d7cde3130deba673216038fe (diff)
downloadbarebox-556bfc1f54e94ff98057c1aee2a3499912dc91d1.tar.gz
barebox-556bfc1f54e94ff98057c1aee2a3499912dc91d1.tar.xz
[pm9263] use correct architecture a.k.a. machine ID
The "pm9263" has the official machie ID 0x5c3, not 0x4b2. This patche fixes this. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'board')
-rw-r--r--board/pm9263/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/pm9263/init.c b/board/pm9263/init.c
index 001879ae07..d811c955c6 100644
--- a/board/pm9263/init.c
+++ b/board/pm9263/init.c
@@ -104,7 +104,7 @@ static int pm9263_devices_init(void)
#endif
armlinux_set_bootparams((void *)0x20000100);
- armlinux_set_architecture(0x4b2);
+ armlinux_set_architecture(0x5c3);
return 0;
}