From 9edf92ca5ee241c948e432089c318cf469cf1833 Mon Sep 17 00:00:00 2001 From: neil Date: Wed, 21 Nov 2012 20:25:10 +0000 Subject: [PATCH] Don't print warning about unassigned interrupt lines on bridges. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@46060 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/hidds/hidd.pci/pcideviceclass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rom/hidds/hidd.pci/pcideviceclass.c b/rom/hidds/hidd.pci/pcideviceclass.c index dc495336a3..66b48b8bac 100644 --- a/rom/hidds/hidd.pci/pcideviceclass.c +++ b/rom/hidds/hidd.pci/pcideviceclass.c @@ -1,5 +1,5 @@ /* - Copyright © 2004-2011, The AROS Development Team. All rights reserved. + Copyright © 2004-2012, The AROS Development Team. All rights reserved. $Id$ Desc: PCI device class @@ -288,7 +288,7 @@ OOP_Object *PCIDev__Root__New(OOP_Class *cl, OOP_Object *o, struct pRoot_New *ms D(bug("[PCIDevice] > IRQ %u INT %u\n", dev->IRQLine, dev->INTLine)); // print out a warning to the user in case the interrupt line is not assigned by BIOS - if (dev->INTLine == 255) + if (dev->INTLine == 255 && !dev->isBridge) bug("[PCIDevice] WARNING: Interrupt line is not assigned! Device may freeze or malfunction at use!\n"); /* Read two first base addresses */ -- 2.11.4.GIT