mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
mmc: atmel-mci: Delete an error message for a failed memory allocation
Omit an extra message for a memory allocation failure. This issue was detected by using the Coccinelle software. Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
b428e712e1
commit
9b344ba420
@ -660,10 +660,8 @@ atmci_of_init(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
|
pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
|
||||||
if (!pdata) {
|
if (!pdata)
|
||||||
dev_err(&pdev->dev, "could not allocate memory for pdata\n");
|
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
}
|
|
||||||
|
|
||||||
for_each_child_of_node(np, cnp) {
|
for_each_child_of_node(np, cnp) {
|
||||||
if (of_property_read_u32(cnp, "reg", &slot_id)) {
|
if (of_property_read_u32(cnp, "reg", &slot_id)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user