950-0607-drm-vc4-Fix-build-without-DRM_VC4_HDMI_CEC.patch 775 B

12345678910111213141516171819202122232425
  1. From 977d51f1d3f7058a4bcde2b3f6497880ccd5db6c Mon Sep 17 00:00:00 2001
  2. From: Phil Elwell <[email protected]>
  3. Date: Tue, 14 Dec 2021 21:53:18 +0000
  4. Subject: [PATCH] drm/vc4: Fix build without DRM_VC4_HDMI_CEC
  5. As reported by @asavah.
  6. Fixes: https://github.com/raspberrypi/linux/issues/4771
  7. Signed-off-by: Phil Elwell <[email protected]>
  8. ---
  9. drivers/gpu/drm/vc4/vc4_hdmi.c | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. --- a/drivers/gpu/drm/vc4/vc4_hdmi.c
  12. +++ b/drivers/gpu/drm/vc4/vc4_hdmi.c
  13. @@ -2281,7 +2281,7 @@ static int vc4_hdmi_cec_init(struct vc4_
  14. static void vc4_hdmi_cec_exit(struct vc4_hdmi *vc4_hdmi) {};
  15. -static void vc4_hdmi_cec_resume(struct vc4_hdmi *vc4_hdmi)
  16. +static int vc4_hdmi_cec_resume(struct vc4_hdmi *vc4_hdmi)
  17. {
  18. return 0;
  19. }