struct device_def* binddef = pcidev->binding.def;
if (!binddef) {
- kprintf("pci.%d:%d:%d, no binding\n",
+ kprintf("pci.%d:%d:%d, no binding",
PCILOC_BUS(loc),
PCILOC_DEV(loc),
PCILOC_FN(loc));
return;
}
- kprintf("pci.%d:%d:%d, dev.%xh:%xh.%d, %s\n",
+ kprintf("pci.%d:%d:%d, dev.%xh:%xh.%d, %s",
PCILOC_BUS(loc),
PCILOC_DEV(loc),
PCILOC_FN(loc),
found:
if (!pos->devdef.bind) {
- kprintf(KERROR "pci_loc:%x, (%xh:%xh.%d) unbindable\n",
+ kprintf(KERROR "pci_loc:%x, (%xh:%xh.%d) unbindable",
loc,
pos->devdef.class.fn_grp,
pos->devdef.class.device,
int errno = pos->devdef.bind(&pos->devdef, &device->dev);
if (errno) {
- kprintf(KERROR "pci_loc:%x, (%xh:%xh.%d) failed, e=%d\n",
+ kprintf(KERROR "pci_loc:%x, (%xh:%xh.%d) failed, e=%d",
loc,
pos->devdef.class.fn_grp,
pos->devdef.class.device,