Commit d14cb130 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab

[media] omap4iss: Don't check for DEBUG when printing IRQ debugging messages

Now that the VIDEO_OMAP4_DEBUG Kconfig option has been removed in favour
of dynamic printk, the DEBUG macro isn't defined anymore. Don't check
for it to guard IRQ debugging messages compilation, as they're already
guarded by the ISS_ISR_DEBUG macro.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 2e509ddd
...@@ -204,7 +204,7 @@ void omap4iss_configure_bridge(struct iss_device *iss, ...@@ -204,7 +204,7 @@ void omap4iss_configure_bridge(struct iss_device *iss,
iss_reg_write(iss, OMAP4_ISS_MEM_ISP_SYS1, ISP5_CTRL, isp5ctrl_val); iss_reg_write(iss, OMAP4_ISS_MEM_ISP_SYS1, ISP5_CTRL, isp5ctrl_val);
} }
#if defined(DEBUG) && defined(ISS_ISR_DEBUG) #ifdef ISS_ISR_DEBUG
static void iss_isr_dbg(struct iss_device *iss, u32 irqstatus) static void iss_isr_dbg(struct iss_device *iss, u32 irqstatus)
{ {
static const char * const name[] = { static const char * const name[] = {
...@@ -347,14 +347,14 @@ static irqreturn_t iss_isr(int irq, void *_iss) ...@@ -347,14 +347,14 @@ static irqreturn_t iss_isr(int irq, void *_iss)
omap4iss_resizer_isr(&iss->resizer, omap4iss_resizer_isr(&iss->resizer,
isp_irqstatus & resizer_events); isp_irqstatus & resizer_events);
#if defined(DEBUG) && defined(ISS_ISR_DEBUG) #ifdef ISS_ISR_DEBUG
iss_isp_isr_dbg(iss, isp_irqstatus); iss_isp_isr_dbg(iss, isp_irqstatus);
#endif #endif
} }
omap4iss_flush(iss); omap4iss_flush(iss);
#if defined(DEBUG) && defined(ISS_ISR_DEBUG) #ifdef ISS_ISR_DEBUG
iss_isr_dbg(iss, irqstatus); iss_isr_dbg(iss, irqstatus);
#endif #endif
......
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