Skip to content

Commit

Permalink
[PATCH] m68knommu: register map setup for MOD5272 board
Browse files Browse the repository at this point in the history
The boot loader on the MOD5272 board doesn't set the register maping,
so set it in the 5272 init code. There was code in there to support
this, but we had never needed to use it before.

Signed-off-by: Greg Ungerer <gerg@uclinux.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Greg Ungerer authored and Linus Torvalds committed Sep 9, 2005
1 parent a052b7a commit a796266
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/m68knommu/platform/5272/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ int mcf_timerirqpending(int timer)

void config_BSP(char *commandp, int size)
{
#if 0
volatile unsigned long *pivrp;
#if defined (CONFIG_MOD5272)
volatile unsigned char *pivrp;

/* Set base of device vectors to be 64 */
pivrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_PIVR);
pivrp = (volatile unsigned char *) (MCF_MBAR + MCFSIM_PIVR);
*pivrp = 0x40;
#endif

Expand Down

0 comments on commit a796266

Please sign in to comment.