mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
stm32mp1: rng: remove superfluous assignment
We should not assign a value that is overwritten before use. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Acked-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
committed by
Patrick Delaunay
parent
9e1d65f36b
commit
250b303de8
@@ -33,7 +33,7 @@ struct stm32_rng_platdata {
|
||||
|
||||
static int stm32_rng_read(struct udevice *dev, void *data, size_t len)
|
||||
{
|
||||
int retval = 0, i;
|
||||
int retval, i;
|
||||
u32 sr, count, reg;
|
||||
size_t increment;
|
||||
struct stm32_rng_platdata *pdata = dev_get_platdata(dev);
|
||||
|
Reference in New Issue
Block a user