1#ifndef PCI_CLIENT_DEBUG_H
2#define PCI_CLIENT_DEBUG_H
3
4//#define PCI_LIB_DEBUG
5
6#if defined(PCI_LIB_DEBUG) || defined(GLOBAL_DEBUG)
7#define PCI_CLIENT_DEBUG(x...) debug_printf("pci_client: " x)
8#else
9#define PCI_CLIENT_DEBUG(x...) ((void)0)
10#endif
11
12#endif
13