Merge BUG in 2.4.15-pre4 serial.c

From: Martin Dalecki (dalecki@evision-ventures.com)
Date: Tue Nov 13 2001 - 11:49:24 EST


I have found the following code in serial.c aorund line 5565

#ifdef __i386__
        if (i == NR_PORTS) {
                for (i = 4; i < NR_PORTS; i++)
                        if ((rs_table[i].type == PORT_UNKNOWN) &&
                            (rs_table[i].count == 0))
                                break;
        }
#endif
        if (i == NR_PORTS) {
                for (i = 0; i < NR_PORTS; i++)
                        if ((rs_table[i].type == PORT_UNKNOWN) &&
                            (rs_table[i].count == 0))
                                break;
        }

This is supposedly the result of applying some patch twice.
Let me guess the first 8 lines of this can be deleted.

Regards!
-
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/



This archive was generated by hypermail 2b29 : Thu Nov 15 2001 - 21:00:35 EST