Commit ac50a923 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_pcidio: remove custom DPRINTK macro

The comedi core defines a DPRINTK macro in comedidev.h. Use that macro
instead of defining a private version in this driver.

Also, remove the DEBUG define since it was only used to enable the
DPRINTK macro.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9e0c0db6
...@@ -47,7 +47,6 @@ comedi_nonfree_firmware tarball available from http://www.comedi.org ...@@ -47,7 +47,6 @@ comedi_nonfree_firmware tarball available from http://www.comedi.org
*/ */
#define USE_DMA #define USE_DMA
/* #define DEBUG 1 */
/* #define DEBUG_FLAGS */ /* #define DEBUG_FLAGS */
#include <linux/module.h> #include <linux/module.h>
...@@ -60,13 +59,6 @@ comedi_nonfree_firmware tarball available from http://www.comedi.org ...@@ -60,13 +59,6 @@ comedi_nonfree_firmware tarball available from http://www.comedi.org
#include "comedi_fc.h" #include "comedi_fc.h"
#include "mite.h" #include "mite.h"
#undef DPRINTK
#ifdef DEBUG
#define DPRINTK(format, args...) pr_debug(format, ## args)
#else
#define DPRINTK(format, args...) do { } while (0)
#endif
#define PCI_DIO_SIZE 4096 #define PCI_DIO_SIZE 4096
#define PCI_MITE_SIZE 4096 #define PCI_MITE_SIZE 4096
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment