diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-17 14:02:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-17 14:02:39 +0000 |
commit | d299af58dc2d4f475ed2c7568fe0e975f7ecfb82 (patch) | |
tree | 5446b9525d40e7025ac5c02a5f345f90b8450200 /sys/dev | |
parent | a916e1c809ec59f540bda6c1bc0f80aa64c64541 (diff) |
probe routine has to have a way to succeed; netbsd pr#2555; peter@peter.noc.demon.net
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_fpa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/if_fpa.c b/sys/dev/pci/if_fpa.c index ccab7b949f5..87e3a602484 100644 --- a/sys/dev/pci/if_fpa.c +++ b/sys/dev/pci/if_fpa.c @@ -372,7 +372,7 @@ pdq_pci_match( if (PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_DEC_DEFPA) return 0; - return 0; + return 1; } static void |