mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
coresight: Use ERR_CAST instead of ERR_PTR
[ Upstream commit bbd35ba6fa ]
Use ERR_CAT inlined function to replace the ERR_PTR(PTR_ERR). It
make the code more concise.
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
240293e021
commit
59a488998c
@@ -536,7 +536,7 @@ tmc_init_etr_sg_table(struct device *dev, int node,
|
||||
sg_table = tmc_alloc_sg_table(dev, node, nr_tpages, nr_dpages, pages);
|
||||
if (IS_ERR(sg_table)) {
|
||||
kfree(etr_table);
|
||||
return ERR_PTR(PTR_ERR(sg_table));
|
||||
return ERR_CAST(sg_table);
|
||||
}
|
||||
|
||||
etr_table->sg_table = sg_table;
|
||||
|
||||
Reference in New Issue
Block a user