--- linux-2.6.2-rc3/drivers/char/moxa.c 2003-10-09 10:02:39.000000000 +0200 +++ linux-m68k-2.6.2-rc3/drivers/char/moxa.c 2004-01-10 04:25:26.000000000 +0100 @@ -49,6 +49,7 @@ #include #include #include +#include #include #include @@ -292,7 +293,7 @@ static int __init moxa_init(void) { - int i, n, numBoards; + int i, numBoards; struct moxa_str *ch; printk(KERN_INFO "MOXA Intellio family driver version %s\n", MOXA_VERSION); @@ -410,7 +411,7 @@ #ifdef CONFIG_PCI { struct pci_dev *p = NULL; - n = (sizeof(moxa_pcibrds) / sizeof(moxa_pcibrds[0])) - 1; + int n = (sizeof(moxa_pcibrds) / sizeof(moxa_pcibrds[0])) - 1; i = 0; while (i < n) { while ((p = pci_find_device(moxa_pcibrds[i].vendor, moxa_pcibrds[i].device, p))!=NULL) --- linux-2.6.2-rc3/drivers/char/mxser.c 2003-10-09 10:02:40.000000000 +0200 +++ linux-m68k-2.6.2-rc3/drivers/char/mxser.c 2004-01-10 04:26:02.000000000 +0100 @@ -56,6 +56,7 @@ #include #include #include +#include #include #include @@ -496,7 +497,6 @@ static int __init mxser_module_init(void) { int i, m, retval, b; - int n, index; struct mxser_hwconf hwconf; mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1); @@ -600,9 +600,8 @@ #ifdef CONFIG_PCI { struct pci_dev *pdev = NULL; - - n = (sizeof(mxser_pcibrds) / sizeof(mxser_pcibrds[0])) - 1; - index = 0; + int n = (sizeof(mxser_pcibrds) / sizeof(mxser_pcibrds[0])) - 1; + int index = 0; for (b = 0; b < n; b++) { while ((pdev = pci_find_device(mxser_pcibrds[b].vendor, mxser_pcibrds[b].device, pdev))) {