OSDN Git Service

drm/hisilicon/hibmc: mark PM functions __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Thu, 24 Nov 2016 16:30:26 +0000 (17:30 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 25 Nov 2016 06:58:55 +0000 (07:58 +0100)
commitb61abd49c5dd07d3b97b638128982c3feef99a93
treec366072a8cda32ad902aabb88489bbd599b64297
parent0a4c9ffbd47669d1a0534dbbd45c2855531a6e7d
drm/hisilicon/hibmc: mark PM functions __maybe_unused

When CONFIG_PM_SLEEP is disabled, we get a harmless warning

drm/hisilicon/hibmc/hibmc_drm_drv.c:115:12: error: ‘hibmc_pm_resume’ defined but not used [-Werror=unused-function]
drm/hisilicon/hibmc/hibmc_drm_drv.c:97:12: error: ‘hibmc_pm_suspend’ defined but not used [-Werror=unused-function]

Marking the functions as __maybe_unused avoids the warning without
having to add an #ifdef.

Fixes: 5e0df3a08f3d ("drm/hisilicon/hibmc: Add hisilicon hibmc drm master driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161124163107.3914495-1-arnd@arndb.de
drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c