Re: [PATCH] drm/mcde: Fix an uninitialized variable

2019-06-13 Thread Linus Walleij
On Wed, May 29, 2019 at 4:25 PM Dan Carpenter wrote: > We never set "vblank" to "false". > > Current versions of GCC will initialize it to zero automatically at > certain optimization levels so that's probably why this didn't show up > in testing. > > Fixes: 5fc537bfd000 ("drm/mcde: Add new

[PATCH] drm/mcde: Fix an uninitialized variable

2019-05-29 Thread Dan Carpenter
We never set "vblank" to "false". Current versions of GCC will initialize it to zero automatically at certain optimization levels so that's probably why this didn't show up in testing. Fixes: 5fc537bfd000 ("drm/mcde: Add new driver for ST-Ericsson MCDE") Signed-off-by: Dan Carpenter ---