diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2015-12-04 16:14:58 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-12-29 11:06:31 +0200 |
commit | 85d90b12518f3dfaed23e83dd8b163bc6271725e (patch) | |
tree | 09ad1c4b3a21a9c961ddb3e5cec825c56afd641c /drivers/video/fbdev | |
parent | 9dec58e6c4d44175eaab64308c1bc27a2b5cb555 (diff) | |
download | op-kernel-dev-85d90b12518f3dfaed23e83dd8b163bc6271725e.zip op-kernel-dev-85d90b12518f3dfaed23e83dd8b163bc6271725e.tar.gz |
OMAPDSS: DSS: fix a warning message
The WARN() macro has to take a condition. The current code will just
print the stack trace and the function name instead of the intended
warning message.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev')
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dss.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dss.h b/drivers/video/fbdev/omap2/dss/dss.h index fec68d8..9a64532 100644 --- a/drivers/video/fbdev/omap2/dss/dss.h +++ b/drivers/video/fbdev/omap2/dss/dss.h @@ -343,7 +343,8 @@ u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt); #else static inline u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt) { - WARN("%s: DSI not compiled in, returning pixel_size as 0\n", __func__); + WARN(1, "%s: DSI not compiled in, returning pixel_size as 0\n", + __func__); return 0; } #endif |