> +int board_early_init_f (void)
> +{
> + volatile u32 *pmuxcr = (u32 *)(CONFIG_SYS_IMMR + 0xe0060);
> + u32 val;
> +
> + val = *pmuxcr;
> + val |= 0x60000000;
> + *pmuxcr = val;
> +
> + return 0;
> +}
> +
Andy, How about using the in/out_be32 for this?
Thanks,
Dave