Re: [U-Boot] [PATCH] sunxi: Fix display timing flags

2018-01-22 Thread Jagan Teki
On Wed, Jan 17, 2018 at 1:08 PM, Maxime Ripard wrote: > On Tue, Jan 16, 2018 at 05:43:48PM +0100, Giulio Benetti wrote: >> flags member of struct timing was not initialized, >> this took to unpredictable behaviour of display flags, >> such

Re: [U-Boot] [PATCH] sunxi: Fix display timing flags

2018-01-16 Thread Maxime Ripard
On Tue, Jan 16, 2018 at 05:43:48PM +0100, Giulio Benetti wrote: > flags member of struct timing was not initialized, > this took to unpredictable behaviour of display flags, > such DISPLAY_FLAGS_HSYNC_HIGH instead of _LOW etc. > > Init timing->flags = 0 > > Signed-off-by: Giulio Benetti

[U-Boot] [PATCH] sunxi: Fix display timing flags

2018-01-16 Thread Giulio Benetti
flags member of struct timing was not initialized, this took to unpredictable behaviour of display flags, such DISPLAY_FLAGS_HSYNC_HIGH instead of _LOW etc. Init timing->flags = 0 Signed-off-by: Giulio Benetti --- drivers/video/sunxi/sunxi_display.c | 2 ++ 1