Re: [PATCH] drm/tegra: fix potential uninitialized variable use

2024-09-03 Thread Jani Nikula
On Tue, 03 Sep 2024, Thierry Reding wrote: > On Mon, Sep 02, 2024 at 07:13:17PM GMT, Jani Nikula wrote: >> It's likely either output->drm_edid or output->ddc is non-NULL, but >> avoid the uninitialized variable usage anyway. >> >> Reported-by: kernel test robot >> Closes: https://lore.kernel.org

Re: [PATCH] drm/tegra: fix potential uninitialized variable use

2024-09-03 Thread Thierry Reding
On Mon, Sep 02, 2024 at 07:13:17PM GMT, Jani Nikula wrote: > It's likely either output->drm_edid or output->ddc is non-NULL, but > avoid the uninitialized variable usage anyway. > > Reported-by: kernel test robot > Closes: https://lore.kernel.org/r/ZtXLyXxew7z6H2bD@stanley.mountain > Fixes: 98365

[PATCH] drm/tegra: fix potential uninitialized variable use

2024-09-02 Thread Jani Nikula
It's likely either output->drm_edid or output->ddc is non-NULL, but avoid the uninitialized variable usage anyway. Reported-by: kernel test robot Closes: https://lore.kernel.org/r/ZtXLyXxew7z6H2bD@stanley.mountain Fixes: 98365ca74cbf ("drm/tegra: convert to struct drm_edid") Cc: Thierry Reding C