This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / serial / suncore.c
index 5fc4a62..93909ed 100644 (file)
@@ -90,13 +90,13 @@ no_options:
        cflag = CREAD | HUPCL | CLOCAL;
 
        s = mode;
-       baud = simple_strtoul(s, NULL, 0);
+       baud = simple_strtoul(s, 0, 0);
        s = strchr(s, ',');
-       bits = simple_strtoul(++s, NULL, 0);
+       bits = simple_strtoul(++s, 0, 0);
        s = strchr(s, ',');
        parity = *(++s);
        s = strchr(s, ',');
-       stop = simple_strtoul(++s, NULL, 0);
+       stop = simple_strtoul(++s, 0, 0);
        s = strchr(s, ',');
        /* XXX handshake is not handled here. */