summaryrefslogtreecommitdiff
path: root/board/ti/logic/prod-id/debug.h
blob: 38dc9c3b96de774af218091bf429d80e40872cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __DEBUG_H__
#define __DEBUG_H__

#undef DEBUG

#ifdef DEBUG
#define DPRINTF(fmt, args...) printf(fmt, ## args)
#else
#define DPRINTF(fmt, ...)
#endif

#endif