Skip to content

Commit

Permalink
[media] omap3isp: fix compiler warning
Browse files Browse the repository at this point in the history
This patch fixes this compiler warning:
  drivers/media/video/omap3isp/isp.c: In function 'isp_isr_dbg':
  drivers/media/video/omap3isp/isp.c:392:2: warning: zero-length
   gnu_printf format string

Signed-off-by: Sanjeev Premi <premi@ti.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Sanjeev Premi authored and Mauro Carvalho Chehab committed Jun 1, 2011
1 parent 6e3ea0e commit 6c20c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/omap3isp/isp.c
Original file line number Diff line number Diff line change
@@ -391,7 +391,7 @@ static inline void isp_isr_dbg(struct isp_device *isp, u32 irqstatus)
};
int i;

dev_dbg(isp->dev, "");
dev_dbg(isp->dev, "ISP IRQ: ");

for (i = 0; i < ARRAY_SIZE(name); i++) {
if ((1 << i) & irqstatus)

0 comments on commit 6c20c63

Please sign in to comment.