dev/cpuctl: put debug output under CPUCTL_DEBUG rather than DEBUG

DEBUG is a well-known flag.
It doesn't imply that there is a particular interest in cpuctl.

MFC after:	1 week
This commit is contained in:
avg 2016-11-02 17:47:19 +00:00
parent ae7dce5fb5
commit 3eb3c4d21d

View File

@ -57,7 +57,7 @@ static d_ioctl_t cpuctl_ioctl;
#define CPUCTL_VERSION 1
#ifdef DEBUG
#ifdef CPUCTL_DEBUG
# define DPRINTF(format,...) printf(format, __VA_ARGS__);
#else
# define DPRINTF(...)