View | Details | Raw Unified | Return to bug 551598
Collapse All | Expand All

(-)xen-4.0.0-testing.orig/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c (-1 / +4 lines)
Lines 284-290 Link Here
284
284
285
	if (magic != XEN_IOPORT_MAGIC_VAL) {
285
	if (magic != XEN_IOPORT_MAGIC_VAL) {
286
		dev_err(dev, "invalid magic %#x", magic);
286
		dev_err(dev, "invalid magic %#x", magic);
287
		return -ENODEV;
287
		/* 
288
		 * Older backend; just return 0 to be compatible.
289
		 */
290
		return 0;
288
	}
291
	}
289
292
290
	protocol = inb(XEN_IOPORT_PROTOVER);
293
	protocol = inb(XEN_IOPORT_PROTOVER);

Return to bug 551598