File at91_pio.h inserts following line:

> +#define AT91_PORTPIN(PORT, PIN)      ((0x0##PORT - 10)*32+((PIN) & 0x1F))

this is wrong, sorry about this.

I will resend this patch as soon as posible.

In the meantime you can manually change the line to

#define AT91_PORTPIN(PORT, PIN) ((0x0##PORT - 9) * 32 + ((PIN) & 0x1F))


Best regards
Jens Scharsig

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to