Skip to content

Commit cd4ea49

Browse files
committed
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
2 parents a436c77 + ba2b9de commit cd4ea49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/tegra/output.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
int tegra_output_connector_get_modes(struct drm_connector *connector)
2222
{
2323
struct tegra_output *output = connector_to_output(connector);
24-
const struct drm_edid *drm_edid;
24+
const struct drm_edid *drm_edid = NULL;
2525
int err = 0;
2626

2727
/*

0 commit comments

Comments
 (0)