nvmem: sunxi_sid: Read out SID for randomness without looping
Since the reg_read callbacks already support arbitrary, but 4-byte aligned. offsets and lengths into the SID, there is no need for another for loop just to use it to read 1 byte at a time. Read out the whole SID block in one go. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Acked-by: Maxime Ripard <maxime.ripard@bootlin.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dd4c1047b1
commit
9c4adfb5dc
|
@ -154,7 +154,7 @@ static int sunxi_sid_probe(struct platform_device *pdev)
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
struct nvmem_device *nvmem;
|
struct nvmem_device *nvmem;
|
||||||
struct sunxi_sid *sid;
|
struct sunxi_sid *sid;
|
||||||
int i, size;
|
int size;
|
||||||
char *randomness;
|
char *randomness;
|
||||||
const struct sunxi_sid_cfg *cfg;
|
const struct sunxi_sid_cfg *cfg;
|
||||||
|
|
||||||
|
@ -189,8 +189,7 @@ static int sunxi_sid_probe(struct platform_device *pdev)
|
||||||
if (!randomness)
|
if (!randomness)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
for (i = 0; i < size; i++)
|
econfig.reg_read(sid, 0, randomness, size);
|
||||||
econfig.reg_read(sid, i, &randomness[i], 1);
|
|
||||||
|
|
||||||
add_device_randomness(randomness, size);
|
add_device_randomness(randomness, size);
|
||||||
kfree(randomness);
|
kfree(randomness);
|
||||||
|
|
Loading…
Reference in New Issue