Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Jul 2006 20:56:00 GMT
From:      Olivier Houchard <cognet@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 101870 for review
Message-ID:  <200607182056.k6IKu0ok030496@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=101870

Change 101870 by cognet@cognet on 2006/07/18 20:55:02

	Add the missing arg in the call to uart_bus_probe() (should we revert
	to the old uart_bus_probe() prototype ?)

Affected files ...

.. //depot/projects/arm/src/sys/dev/uart/uart_bus_pci.c#4 edit

Differences ...

==== //depot/projects/arm/src/sys/dev/uart/uart_bus_pci.c#4 (text+ko) ====

@@ -153,7 +153,7 @@
  match:
 	if (id->desc)
 		device_set_desc(dev, id->desc);
-	return (uart_bus_probe(dev, 0, id->rclk, id->rid, 0));
+	return (uart_bus_probe(dev, 0, id->rclk, id->rid, 0, 0));
 }
 
 DRIVER_MODULE(uart, pci, uart_pci_driver, uart_devclass, 0, 0);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607182056.k6IKu0ok030496>