Here is a similar fix in arch/alpha:
Steven
--- linux-2.5.61/arch/alpha/kernel/sys_marvel.c.orig Sat Feb 15 12:45:14 2003
+++ linux-2.5.61/arch/alpha/kernel/sys_marvel.c Sat Feb 15 12:45:31 2003
@@ -223,7 +223,7 @@
*/
val = io7->csrs->PO7_LSI_CTL[which].csr;
val &= ~(0x1ffUL << 14); /* clear the target pid */
- val |= ((unsigned long)where << 14); /* set teh new target pid */
+ val |= ((unsigned long)where << 14); /* set the new target pid */
io7->csrs->PO7_LSI_CTL[which].csr = val;
mb();
@@ -240,7 +240,7 @@
*/
val = io7->csrs->PO7_MSI_CTL[which].csr;
val &= ~(0x1ffUL << 14); /* clear the target pid */
- val |= ((unsigned long)where << 14); /* set teh new target pid */
+ val |= ((unsigned long)where << 14); /* set the new target pid */
io7->csrs->PO7_MSI_CTL[which].csr = val;
mb();
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/