mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
misc: sram: remove redundant null pointer check before of_node_put
of_node_put has taken the null pinter check into account. So it is safe to remove the duplicated check before of_node_put. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7153d9afdb
commit
3104389edc
@ -323,10 +323,8 @@ static int sram_reserve_regions(struct sram_dev *sram, struct resource *res)
|
||||
cur_start = block->start + block->size;
|
||||
}
|
||||
|
||||
err_chunks:
|
||||
if (child)
|
||||
of_node_put(child);
|
||||
|
||||
err_chunks:
|
||||
of_node_put(child);
|
||||
kfree(rblocks);
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user