blob: f9134be635081fe1544ee775f9179c1184a1ea46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _PCILIB_DEBUG_H
#define _PCILIB_DEBUG_H
#define PCILIB_DEBUG
#ifdef PCILIB_DEBUG
# define PCILIB_DEBUG_DMA
#endif /* PCILIB_DEBUG */
#ifdef PCILIB_DEBUG_DMA
# define PCILIB_DEBUG_DMA_CALL(function, ...) pcilib_debug_message (#function, __FILE__, __LINE__, __VA_ARGS__)
#else /* PCILIB_DEBUG_DMA */
# define PCILIB_DEBUG_DMA_CALL(function, ...)
#endif /* PCILIB_DEBUG_DMA */
#define pcilib_debug(function, ...) \
PCILIB_DEBUG_##function##_CALL(PCILIB_DEBUG_##function, __VA_ARGS__)
void pcilib_debug_message(const char *function, const char *file, int line, const char *format, ...);
#endif /* _PCILIB_DEBUG_H */
|