Re: Fwd: New Defects reported by Coverity Scan for Das U-Boot

2023-08-28 Thread Alvaro Fernando García
Hello, El jue, 24 ago. 2023 06:27, Abdellatif El Khlifi < abdellatif.elkhl...@arm.com> escribió: > Hi Tom, > > > Here's the latest report > > > > -- Forwarded message - > > From: > > Date: Mon, Aug 21, 2023 at 4:30 PM > > Subject: New Defects reported by Coverity Scan for Das U-B

Re: [PATCH 1/1] video: avoid build failure on veyron board

2023-08-04 Thread Alvaro Fernando García
Hello Simon, El vie, 4 ago 2023 a la(s) 00:02, Simon Glass (s...@google.com) escribió: > Hi, > > On Thu, 3 Aug 2023 at 18:37, Alvaro Fernando García > wrote: > > > > 533ad9dc avoided an overflow but causes compilation > > failure on 32bit boards (eg. veyron sp

[PATCH 1/1] video: avoid build failure on veyron board

2023-08-03 Thread Alvaro Fernando García
533ad9dc avoided an overflow but causes compilation failure on 32bit boards (eg. veyron speedy) this commit uses div_u64 which has a fallback codepath for 32bit platforms Signed-off-by: Alvaro Fernando García --- drivers/video/pwm_backlight.c | 7 +-- 1 file changed, 5 insertions(+), 2

[PATCH 0/1] Avoid build failure on veyron board

2023-08-03 Thread Alvaro Fernando García
I noticed that u-boot stopped building for Veyron boards since commit 533ad9dc, which may also affect other 32bit boards. This series fixes compilation by using div_u64 operation. I apologize for any inconvenient, this is my first patch. Alvaro Fernando García (1): video: avoid build