mirror of https://gitee.com/openkylin/linux.git
of: Remove redundant size check
Remove a redundant check of buffer size. Signed-off-by: Frank Rowand <frank.rowand@am.sony.com> Signed-off-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
624ab2a49c
commit
ea8229b788
|
@ -216,7 +216,7 @@ static int adjust_local_phandle_references(struct device_node *local_fixups,
|
||||||
|
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
off = be32_to_cpu(((__be32 *)prop_fix->value)[i]);
|
off = be32_to_cpu(((__be32 *)prop_fix->value)[i]);
|
||||||
if (off >= prop->length || (off + 4) > prop->length)
|
if ((off + 4) > prop->length)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
phandle = be32_to_cpu(*(__be32 *)(prop->value + off));
|
phandle = be32_to_cpu(*(__be32 *)(prop->value + off));
|
||||||
|
|
Loading…
Reference in New Issue