Skip to content

Commit

Permalink
Merge tag 'drm-misc-next-fixes-2024-09-05' of https://gitlab.freedesk…
Browse files Browse the repository at this point in the history
…top.org/drm/misc/kernel into drm-next

Short summary of fixes pull:

tegra:
- Fix uninitialized variable in EDID code

Signed-off-by: Dave Airlie <[email protected]>

From: Thomas Zimmermann <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
airlied committed Sep 11, 2024
2 parents a436c77 + ba2b9de commit cd4ea49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/tegra/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/*
Expand Down

0 comments on commit cd4ea49

Please sign in to comment.