linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Problem with detecting the serial ports on a NetMos 9845
@ 2005-12-14  1:00 Steinar H. Gunderson
  0 siblings, 0 replies; only message in thread
From: Steinar H. Gunderson @ 2005-12-14  1:00 UTC (permalink / raw)
  To: linux-serial; +Cc: magne

[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]

Hi,

We have a NetMos 9845 controller with four serial ports but no parallel port, 
and tried to use parport_serial driver with it. However, all it would say was
that it had detected a parallel port at 9710:9735, and then exit.

We tracked it down, and found two problems:

  - For some reason, it detects the 9845 as a 9735 -- it appears this is
    simply related to the ordering in parport_serial_pci_tbl[]. If we move
    the 9845 up above the 9735, it prints out 9710:9845, but no change in
    behaviour. (We didn't find out why this was the case; we left it alone
    since it didn't affect our problem.)
  - The card has no parallel port (at least no physical ones), yet it reports
    (via its subsystem ID of 0x0014) one parallel port and four serial ports.
    The probe for the parallel port fails, and the driver just aborts. Thus,
    it doesn't find the serial ports.

We tested this under both 2.6.12 and 2.6.15, and both had the same problem.
The attached patch (against 2.6.12) changes the logic for the parallel port
detection: If there are detected parallel ports but the probe fails, the
number of parallel ports is simply set to zero, and the probe continues as
usual. This makes it work correctly in our case, and should not present a
problem for other systems.

/* Steinar */
-- 
Homepage: http://www.sesse.net/

[-- Attachment #2: parport_serial.c.diff --]
[-- Type: text/plain, Size: 383 bytes --]

--- linux-source-2.6.12-2.6.12/drivers/parport/parport_serial.c	2005-06-17 21:48:29.000000000 +0200
@@ -418,10 +419,13 @@
 		return err;
 	}
 
-	if (parport_register (dev, id)) {
+	err = parport_register (dev, id);
+	if (err < 0) {
 		pci_set_drvdata (dev, NULL);
 		kfree (priv);
 		return -ENODEV;
+	} else if (err) {
+		priv->num_par = 0;
 	}
 
 	if (serial_register (dev, id)) {

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-12-14  1:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-14  1:00 [PATCH] Problem with detecting the serial ports on a NetMos 9845 Steinar H. Gunderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).