staging: unisys: remove unused macros from visorchipset.h

Delete the macros and related preprocessor code for DBG_GETFILE_PAYLOAD(),
DBG_GETFILE(), and DBG_PUTFILE().

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Benjamin Romer 2014-10-31 09:57:43 -04:00 committed by Greg Kroah-Hartman
parent 60f4cf035e
commit 10c295a1d2

View File

@ -289,17 +289,4 @@ void *visorchipset_cache_alloc(struct kmem_cache *pool,
void visorchipset_cache_free(struct kmem_cache *pool, void *p,
char *fn, int ln);
#if defined(TRANSMITFILE_DEBUG) || defined(DEBUG)
#define DBG_GETFILE_PAYLOAD(msg, controlvm_header) \
LOGINF(msg, \
(ulong)controlvm_header.PayloadVmOffset, \
(ulong)controlvm_header.PayloadMaxBytes)
#define DBG_GETFILE(fmt, ...) LOGINF(fmt, ##__VA_ARGS__)
#define DBG_PUTFILE(fmt, ...) LOGINF(fmt, ##__VA_ARGS__)
#else
#define DBG_GETFILE_PAYLOAD(msg, controlvm_header)
#define DBG_GETFILE(fmt, ...)
#define DBG_PUTFILE(fmt, ...)
#endif
#endif