mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
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>
This commit is contained in:
parent
24e6289c02
commit
4a9a5e390c
@ -493,9 +493,18 @@ static void dsi_perf_show(struct platform_device *dsidev, const char *name)
|
||||
total_bytes * 1000 / total_us);
|
||||
}
|
||||
#else
|
||||
#define dsi_perf_mark_setup(x)
|
||||
#define dsi_perf_mark_start(x)
|
||||
#define dsi_perf_show(x, y)
|
||||
static inline void dsi_perf_mark_setup(struct platform_device *dsidev)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void dsi_perf_mark_start(struct platform_device *dsidev)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void dsi_perf_show(struct platform_device *dsidev,
|
||||
const char *name)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
static void print_irq_status(u32 status)
|
||||
|
Loading…
x
Reference in New Issue
Block a user