pata_macio: Delete an error message for a failed memory allocation in two functions
Omit an extra message for a memory allocation failure in these functions. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
533013d69b
commit
3e342770a2
@ -1131,11 +1131,9 @@ static int pata_macio_attach(struct macio_dev *mdev,
|
|||||||
/* Allocate and init private data structure */
|
/* Allocate and init private data structure */
|
||||||
priv = devm_kzalloc(&mdev->ofdev.dev,
|
priv = devm_kzalloc(&mdev->ofdev.dev,
|
||||||
sizeof(struct pata_macio_priv), GFP_KERNEL);
|
sizeof(struct pata_macio_priv), GFP_KERNEL);
|
||||||
if (priv == NULL) {
|
if (!priv)
|
||||||
dev_err(&mdev->ofdev.dev,
|
|
||||||
"Failed to allocate private memory\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
priv->node = of_node_get(mdev->ofdev.dev.of_node);
|
priv->node = of_node_get(mdev->ofdev.dev.of_node);
|
||||||
priv->mdev = mdev;
|
priv->mdev = mdev;
|
||||||
priv->dev = &mdev->ofdev.dev;
|
priv->dev = &mdev->ofdev.dev;
|
||||||
@ -1277,11 +1275,9 @@ static int pata_macio_pci_attach(struct pci_dev *pdev,
|
|||||||
/* Allocate and init private data structure */
|
/* Allocate and init private data structure */
|
||||||
priv = devm_kzalloc(&pdev->dev,
|
priv = devm_kzalloc(&pdev->dev,
|
||||||
sizeof(struct pata_macio_priv), GFP_KERNEL);
|
sizeof(struct pata_macio_priv), GFP_KERNEL);
|
||||||
if (priv == NULL) {
|
if (!priv)
|
||||||
dev_err(&pdev->dev,
|
|
||||||
"Failed to allocate private memory\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
priv->node = of_node_get(np);
|
priv->node = of_node_get(np);
|
||||||
priv->pdev = pdev;
|
priv->pdev = pdev;
|
||||||
priv->dev = &pdev->dev;
|
priv->dev = &pdev->dev;
|
||||||
|
Loading…
Reference in New Issue
Block a user