From 1e45a1148f4d5a66357b71c630686c655f674cd6 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 20 Nov 2006 22:40:33 +0000 Subject: 2006-11-20 Samuel Thibault Asm tidy. * i386/i386/fpe_linkage.c (disable_fpe): Gather dependent asm statements, add `ax' clobber. (fpe_exception_fixup): Drop bogus cast from input parameter of lcall asm statement. * i386/i386/pio.h (inw, outw): Drop 0x66 prefix an just use the w instruction variant. * i386/i386/proc_reg.h: (get_eflags, get_tr, get_ldt): Drop useless "volatile" from asm statement. (get_esp): Use direct asm register specification. * i386/include/mach/i386/cthreads.h (cthread_sp): Likewise. * i386/intel/pmap.c (pmap_unmap_page_zero): Fix asm clobber into `eax'. De4x5 probe fixup. * linux/src/drivers/net/de4x5.c (pci_probe): Make probe loop stop on any error, not only device not found. --- linux/src/drivers/net/de4x5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linux') diff --git a/linux/src/drivers/net/de4x5.c b/linux/src/drivers/net/de4x5.c index b6364cd..b1ab417 100644 --- a/linux/src/drivers/net/de4x5.c +++ b/linux/src/drivers/net/de4x5.c @@ -2147,7 +2147,7 @@ pci_probe(struct device *dev, u_long ioaddr)) } for (index=lastPCI+1; - (pcibios_find_class(class, index, &pb, &dev_fn)!= PCIBIOS_DEVICE_NOT_FOUND); + (pcibios_find_class(class, index, &pb, &dev_fn)== PCIBIOS_SUCCESSFUL); index++) { dev_num = PCI_SLOT(dev_fn); if ((!pbus && !dnum) || ((pbus == pb) && (dnum == dev_num))) { -- cgit v1.2.3