Re: [PATCH v4 2/4] hw/ssi: ibex_spi: fixup coverity issue

2022-09-08 Thread Alistair Francis
On Tue, Aug 23, 2022 at 8:13 AM Wilfred Mallawa wrote: > > From: Wilfred Mallawa > > This patch addresses the coverity issues specified in [1], > as suggested, `FIELD_DP32()`/`FIELD_EX32()` macros have been > implemented to clean up the code. > > [1] https://www.mail-archive.com/qemu-devel@nongnu

Re: [PATCH v4 2/4] hw/ssi: ibex_spi: fixup coverity issue

2022-08-30 Thread Alistair Francis
On Tue, Aug 23, 2022 at 8:13 AM Wilfred Mallawa wrote: > > From: Wilfred Mallawa > > This patch addresses the coverity issues specified in [1], > as suggested, `FIELD_DP32()`/`FIELD_EX32()` macros have been > implemented to clean up the code. > > [1] https://www.mail-archive.com/qemu-devel@nongnu

[PATCH v4 2/4] hw/ssi: ibex_spi: fixup coverity issue

2022-08-22 Thread Wilfred Mallawa
From: Wilfred Mallawa This patch addresses the coverity issues specified in [1], as suggested, `FIELD_DP32()`/`FIELD_EX32()` macros have been implemented to clean up the code. [1] https://www.mail-archive.com/qemu-devel@nongnu.org/msg887713.html Fixes: Coverity CID 1488107 Signed-off-by: Wilfr