diff options
| author | Warner Losh <imp@FreeBSD.org> | 2005-03-05 18:17:35 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2005-03-05 18:17:35 +0000 |
| commit | b77e575e1dd3257e0ae72a69ee1897510f7a27ed (patch) | |
| tree | c05e64a4d23479cff13a84a1257adf269a8787f2 /sys/dev/ida | |
| parent | 96a757bcf1fd827b546a5883ecfd6e1324b474e1 (diff) | |
Use BUS_PROBE_DEFAULT for pci probe return value
Notes
svn path=/head/; revision=143160
Diffstat (limited to 'sys/dev/ida')
| -rw-r--r-- | sys/dev/ida/ida_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ida/ida_pci.c b/sys/dev/ida/ida_pci.c index 105331792331..4472e016fd80 100644 --- a/sys/dev/ida/ida_pci.c +++ b/sys/dev/ida/ida_pci.c @@ -229,7 +229,7 @@ ida_pci_probe(device_t dev) if (board != NULL) { device_set_desc(dev, board->desc); - return (0); + return (BUS_PROBE_DEFAULT); } return (ENXIO); } |
