Add a missing newline to the end of a device_printf().

Reported by:	Michael G. Petry <petry@NetMasters.Com>
This commit is contained in:
jhb 2002-10-29 19:08:55 +00:00
parent 2fe4c03943
commit 13f1045bf9

View File

@ -80,7 +80,7 @@ acpi_pcib_attach(device_t dev, ACPI_BUFFER *prt, int busno)
* Attach the PCI bus proper.
*/
if ((child = device_add_child(dev, "pci", busno)) == NULL) {
device_printf(device_get_parent(dev), "couldn't attach pci bus");
device_printf(device_get_parent(dev), "couldn't attach pci bus\n");
return_VALUE(ENXIO);
}