staging: comedi: ni_mio_common: remove DEBUG_INTERRUPT messages
Defining DEBUG_INTERRUPT enables some function trace messages during the interrupt. These messages are just added noise. Remove them. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
957a914186
commit
d8e1f9619b
|
@ -52,8 +52,6 @@
|
||||||
fully tested as yet. Terry Barnaby, BEAM Ltd.
|
fully tested as yet. Terry Barnaby, BEAM Ltd.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* #define DEBUG_INTERRUPT */
|
|
||||||
|
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
|
@ -1029,11 +1027,6 @@ static void handle_a_interrupt(struct comedi_device *dev, unsigned short status,
|
||||||
if (s->type == COMEDI_SUBD_UNUSED)
|
if (s->type == COMEDI_SUBD_UNUSED)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef DEBUG_INTERRUPT
|
|
||||||
printk
|
|
||||||
("ni_mio_common: interrupt: a_status=%04x ai_mite_status=%08x\n",
|
|
||||||
status, ai_mite_status);
|
|
||||||
#endif
|
|
||||||
#ifdef PCIDMA
|
#ifdef PCIDMA
|
||||||
if (ai_mite_status & CHSR_LINKC) {
|
if (ai_mite_status & CHSR_LINKC) {
|
||||||
ni_sync_ai_dma(dev);
|
ni_sync_ai_dma(dev);
|
||||||
|
@ -1081,9 +1074,6 @@ static void handle_a_interrupt(struct comedi_device *dev, unsigned short status,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (status & AI_SC_TC_St) {
|
if (status & AI_SC_TC_St) {
|
||||||
#ifdef DEBUG_INTERRUPT
|
|
||||||
printk("ni_mio_common: SC_TC interrupt\n");
|
|
||||||
#endif
|
|
||||||
if (!devpriv->ai_continuous) {
|
if (!devpriv->ai_continuous) {
|
||||||
shutdown_ai_command(dev);
|
shutdown_ai_command(dev);
|
||||||
}
|
}
|
||||||
|
@ -1110,15 +1100,6 @@ static void handle_a_interrupt(struct comedi_device *dev, unsigned short status,
|
||||||
}
|
}
|
||||||
|
|
||||||
ni_event(dev, s);
|
ni_event(dev, s);
|
||||||
|
|
||||||
#ifdef DEBUG_INTERRUPT
|
|
||||||
status = devpriv->stc_readw(dev, AI_Status_1_Register);
|
|
||||||
if (status & Interrupt_A_St) {
|
|
||||||
printk
|
|
||||||
("handle_a_interrupt: didn't clear interrupt? status=0x%x\n",
|
|
||||||
status);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ack_b_interrupt(struct comedi_device *dev, unsigned short b_status)
|
static void ack_b_interrupt(struct comedi_device *dev, unsigned short b_status)
|
||||||
|
@ -1158,11 +1139,6 @@ static void handle_b_interrupt(struct comedi_device *dev,
|
||||||
struct comedi_subdevice *s = &dev->subdevices[NI_AO_SUBDEV];
|
struct comedi_subdevice *s = &dev->subdevices[NI_AO_SUBDEV];
|
||||||
/* unsigned short ack=0; */
|
/* unsigned short ack=0; */
|
||||||
|
|
||||||
#ifdef DEBUG_INTERRUPT
|
|
||||||
printk("ni_mio_common: interrupt: b_status=%04x m1_status=%08x\n",
|
|
||||||
b_status, ao_mite_status);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef PCIDMA
|
#ifdef PCIDMA
|
||||||
/* Currently, mite.c requires us to handle LINKC */
|
/* Currently, mite.c requires us to handle LINKC */
|
||||||
if (ao_mite_status & CHSR_LINKC) {
|
if (ao_mite_status & CHSR_LINKC) {
|
||||||
|
|
Loading…
Reference in New Issue