aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2011-05-23 09:36:09 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2011-07-01 05:01:13 -0400
commit4a9a5e390cb57f12de77b94b07dccf14752157ad (patch)
treead46b480fa726694496dd55e0c38f278cb44c301 /drivers/video/omap2
parent24e6289c029b0cf5b4f75e12c1b66000d441c9ed (diff)
OMAP: DSS2: DSI: Change dummy macros to inline functions
Using empty macros for performance measurement functions when DSS DEBUG is not enabled causes an unused variable warning. Change the empty macros to empty inline functions to remove the warning. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2')
-rw-r--r--drivers/video/omap2/dss/dsi.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c
index 345757cfcbe..69c2d4fe074 100644
--- a/drivers/video/omap2/dss/dsi.c
+++ b/drivers/video/omap2/dss/dsi.c
@@ -493,9 +493,18 @@ static void dsi_perf_show(struct platform_device *dsidev, const char *name)
493 total_bytes * 1000 / total_us); 493 total_bytes * 1000 / total_us);
494} 494}
495#else 495#else
496#define dsi_perf_mark_setup(x) 496static inline void dsi_perf_mark_setup(struct platform_device *dsidev)
497#define dsi_perf_mark_start(x) 497{
498#define dsi_perf_show(x, y) 498}
499
500static inline void dsi_perf_mark_start(struct platform_device *dsidev)
501{
502}
503
504static inline void dsi_perf_show(struct platform_device *dsidev,
505 const char *name)
506{
507}
499#endif 508#endif
500 509
501static void print_irq_status(u32 status) 510static void print_irq_status(u32 status)