]> git.ipfire.org Git - people/arne_f/kernel.git/commit
fbdev: auo_k190x: avoid unused function warnings
authorArnd Bergmann <arnd@arndb.de>
Fri, 20 Nov 2015 21:47:41 +0000 (22:47 +0100)
committerSasha Levin <alexander.levin@microsoft.com>
Sun, 4 Mar 2018 15:28:30 +0000 (10:28 -0500)
commitfbb1026962a43c0a48a25caa1cf6ef5cb560fb52
tree2ed5be69a1e4e8007b2e3a70e99ac9c786f28590
parent9d88694528315217dbb0b4fed650f8948634a89b
fbdev: auo_k190x: avoid unused function warnings

[ Upstream commit a8a31afad5ffa1c7de0cef1c4bc383b50f426bf8 ]

The auo_k190x framebuffer driver encloses the power-management
functions in #ifdef CONFIG_PM, but the auok190x_suspend/resume
functions are only really used when CONFIG_PM_SLEEP is also
set, as a frequent gcc warning shows:

drivers/video/fbdev/auo_k190x.c:859:12: warning: 'auok190x_suspend' defined but not used
drivers/video/fbdev/auo_k190x.c:899:12: warning: 'auok190x_resume' defined but not used

This changes the driver to remove the #ifdef and instead mark
the functions as __maybe_unused, which is a nicer anyway, as it
provides build testing for all the code in all configurations
and is harder to get wrong.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/video/fbdev/auo_k190x.c