diff options
author | Dave Airlie <airlied@redhat.com> | 2024-09-11 13:21:55 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2024-09-11 13:21:59 +1000 |
commit | cd4ea49599a3b2233e5fb24a73b2f2d1ea3e35dc (patch) | |
tree | 4e5e07ed0267971d502239d153c50c8c0694ce0f | |
parent | a436c77ea26b0c4e9593a8b972eb2b6aca8c7da1 (diff) | |
parent | ba2b9de0c1ac2abfbe663414a292c5881e64c361 (diff) |
Merge tag 'drm-misc-next-fixes-2024-09-05' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-next
Short summary of fixes pull:
tegra:
- Fix uninitialized variable in EDID code
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20240905113836.GA292407@linux.fritz.box
-rw-r--r-- | drivers/gpu/drm/tegra/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/output.c b/drivers/gpu/drm/tegra/output.c index e6b5863fec71..49e4f63a5550 100644 --- a/drivers/gpu/drm/tegra/output.c +++ b/drivers/gpu/drm/tegra/output.c @@ -21,7 +21,7 @@ int tegra_output_connector_get_modes(struct drm_connector *connector) { struct tegra_output *output = connector_to_output(connector); - const struct drm_edid *drm_edid; + const struct drm_edid *drm_edid = NULL; int err = 0; /* |