mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-22 02:25:37 +00:00
Using the SET_RUNTIME_PM_OPS() macro causes a warning about the
referenced functions when they are marked static but not __maybe_unused:
drivers/gpu/drm/omapdrm/dss/dss.c:1572:12: error: unused function 'dss_runtime_suspend' [-Werror,-Wunused-function]
drivers/gpu/drm/omapdrm/dss/dss.c:1584:12: error: unused function 'dss_runtime_resume' [-Werror,-Wunused-function]
drivers/gpu/drm/omapdrm/dss/dispc.c:4845:12: error: unused function 'dispc_runtime_suspend' [-Werror,-Wunused-function]
drivers/gpu/drm/omapdrm/dss/dispc.c:4860:12: error: unused function 'dispc_runtime_resume' [-Werror,-Wunused-function]
Fixes:
|
||
|---|---|---|
| .. | ||
| base.c | ||
| dispc_coefs.c | ||
| dispc.c | ||
| dispc.h | ||
| dpi.c | ||
| dsi.c | ||
| dsi.h | ||
| dss.c | ||
| dss.h | ||
| hdmi4_cec.c | ||
| hdmi4_cec.h | ||
| hdmi4_core.c | ||
| hdmi4_core.h | ||
| hdmi4.c | ||
| hdmi5_core.c | ||
| hdmi5_core.h | ||
| hdmi5.c | ||
| hdmi_common.c | ||
| hdmi_phy.c | ||
| hdmi_pll.c | ||
| hdmi_wp.c | ||
| hdmi.h | ||
| omapdss.h | ||
| output.c | ||
| pll.c | ||
| sdi.c | ||
| venc.c | ||
| video-pll.c | ||