[PATCH] m68knommu: set irq priority/level different for each ColdFire serial port

Set the hardware interrupt priority to a different value for each
attached ColdFire serial port. According to the CPU documentation you
should not use the same combination of level/priority on more than one
device. People have reported odd serial port behavior with them set the
same.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Greg Ungerer and committed by
Linus Torvalds
082f2c1c 892b6252

+1 -1
+1 -1
drivers/serial/mcfserial.c
··· 1516 1516 1517 1517 icrp = (volatile unsigned char *) (MCF_MBAR + MCFICM_INTC0 + 1518 1518 MCFINTC_ICR0 + MCFINT_UART0 + info->line); 1519 - *icrp = 0x33; /* UART0 with level 6, priority 3 */ 1519 + *icrp = 0x30 + info->line; /* level 6, line based priority */ 1520 1520 1521 1521 imrp = (volatile unsigned long *) (MCF_MBAR + MCFICM_INTC0 + 1522 1522 MCFINTC_IMRL);