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:
Andriy Gapon 2016-11-02 17:47:19 +00:00
parent eb6befba30
commit d8aeed01eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=308225

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(...)