Re: [PATCH] stm32f4xx_syscfg: remove redundant code to fix coverity warning

2020-01-22 Thread Thomas Huth
On 23/01/2020 03.38, pannengy...@huawei.com wrote: > From: Pan Nengyuan > > Fixes the coverity warning: > CID 91708242: (EVALUATION_ORDER) > 50. write_write_typo: In "config = config = irq / 16", "config" is > written twice with the same value. > 50uint8_t config = config = irq /

[PATCH] stm32f4xx_syscfg: remove redundant code to fix coverity warning

2020-01-22 Thread pannengyuan
From: Pan Nengyuan Fixes the coverity warning: CID 91708242: (EVALUATION_ORDER) 50. write_write_typo: In "config = config = irq / 16", "config" is written twice with the same value. 50uint8_t config = config = irq / 16; Reported-by: Euler Robot Signed-off-by: Pan Nengyuan ---