mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-24 19:10:20 +00:00
clang warns about functions returning a 'const int' result:
drivers/gpu/drm/imx/imx-tve.c:487:8: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
Remove the extraneous 'const' qualifier here. I would guess that the
function was intended to be marked __attribute__((const)) instead,
but that would also be wrong since it call other functions without
that attribute.
Fixes:
|
||
|---|---|---|
| .. | ||
| dcss | ||
| dw_hdmi-imx.c | ||
| imx-drm-core.c | ||
| imx-drm.h | ||
| imx-ldb.c | ||
| imx-tve.c | ||
| ipuv3-crtc.c | ||
| ipuv3-plane.c | ||
| ipuv3-plane.h | ||
| Kconfig | ||
| Makefile | ||
| parallel-display.c | ||