Re: [PATCH v2] bsp/raspberrypi: Fix build warnings.

2020-04-10 Thread Joel Sherrill
Pushed. I'm sorry. It is surprising but working from home seems to create even more work than being in the office. I am swamped. :( --joel On Fri, Apr 10, 2020 at 7:59 AM Niteesh G. S. wrote: > This patch has been unnoticed for a while. > If the lack of testing is what is stopping from

Re: [PATCH v2] bsp/raspberrypi: Fix build warnings.

2020-04-10 Thread Niteesh G. S.
This patch has been unnoticed for a while. If the lack of testing is what is stopping from pushing it I am happy to test it on real hardware. But I can't come up with a good methodology for testing it. My initial thoughts were to generate a GPIO interrupt with no ISR. This would cause the default

Re: [PATCH v2] bsp/raspberrypi: Fix build warnings.

2020-03-30 Thread Gedare Bloom
This looks right but I'm not able to try it out. On Sat, Mar 28, 2020 at 12:24 PM G S Niteesh Babu wrote: > > 1) _Memory_Initialize makes pointer from integer > without a cast. > 2) printf format error, expects %u but %lu provided. > --- > bsps/arm/raspberrypi/irq/irq.c | 4

[PATCH v2] bsp/raspberrypi: Fix build warnings.

2020-03-28 Thread G S Niteesh Babu
1) _Memory_Initialize makes pointer from integer without a cast. 2) printf format error, expects %u but %lu provided. --- bsps/arm/raspberrypi/irq/irq.c | 4 +++- bsps/arm/raspberrypi/start/bspstarthooks.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git