Skip to content
Snippets Groups Projects
Commit 0549353a authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

mecp5123: fix build error


The mecp5123 board did not compile because the MSCAN Clock Control
Registers were missing; these got added, but as an array instead
of 4 individual registers. Adapt the code so it builds.

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
Cc: Stefan Roese <sr@denx.de>
Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
parent a9905db5
No related branches found
No related tags found
No related merge requests found
...@@ -79,6 +79,7 @@ int board_early_init_f(void) ...@@ -79,6 +79,7 @@ int board_early_init_f(void)
{ {
volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR; volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
u32 spridr; u32 spridr;
int i;
/* /*
* Initialize Local Window for NOR FLASH access * Initialize Local Window for NOR FLASH access
...@@ -129,14 +130,10 @@ int board_early_init_f(void) ...@@ -129,14 +130,10 @@ int board_early_init_f(void)
/* /*
* Configure MSCAN clocks * Configure MSCAN clocks
*/ */
out_be32(&im->clk.m1ccr, 0x00300000); for (i=0; i<4; ++i) {
out_be32(&im->clk.m2ccr, 0x00300000); out_be32(&im->clk.msccr[i], 0x00300000);
out_be32(&im->clk.m3ccr, 0x00300000); out_be32(&im->clk.msccr[i], 0x00310000);
out_be32(&im->clk.m4ccr, 0x00300000); }
out_be32(&im->clk.m1ccr, 0x00310000);
out_be32(&im->clk.m2ccr, 0x00310000);
out_be32(&im->clk.m3ccr, 0x00310000);
out_be32(&im->clk.m4ccr, 0x00310000);
/* /*
* Configure GPIO's * Configure GPIO's
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment