changeset 1478:5dd2b854cc32

Restore 'found it' message - conditionally - from David Vrabel
author gthomas
date Tue, 20 Jan 2004 15:27:45 +0000
parents b300f8978722
children 7f22303e92aa
files packages/io/pci/current/src/pci.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/packages/io/pci/current/src/pci.c
+++ b/packages/io/pci/current/src/pci.c
@@ -568,6 +568,9 @@ cyg_pci_find_device( cyg_uint16 vendor, 
 
         // Check that device matches.
         if (d == device) {
+#ifdef CYGPKG_IO_PCI_DEBUG
+            diag_printf("Found it!\n");
+#endif
             *devid = new_devid;
             return true;
         }