aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/host
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-05-09 01:31:25 -0400
committerBjorn Helgaas <bhelgaas@google.com>2014-05-27 18:58:00 -0400
commit755ba5e406e5ddd876e85a881dc50c7f54a8fd6b (patch)
tree1b1ccb1c5750fd368372d486d632d9f7fccde839 /drivers/pci/host
parentc9eaa447e77efe77b7fa4c953bd62de8297fd6c5 (diff)
PCI: exynos: Remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/host')
-rw-r--r--drivers/pci/host/pci-exynos.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pci/host/pci-exynos.c b/drivers/pci/host/pci-exynos.c
index 3de6bfbbe8e9..81aa700a8ada 100644
--- a/drivers/pci/host/pci-exynos.c
+++ b/drivers/pci/host/pci-exynos.c
@@ -568,10 +568,8 @@ static int __init exynos_pcie_probe(struct platform_device *pdev)
568 568
569 exynos_pcie = devm_kzalloc(&pdev->dev, sizeof(*exynos_pcie), 569 exynos_pcie = devm_kzalloc(&pdev->dev, sizeof(*exynos_pcie),
570 GFP_KERNEL); 570 GFP_KERNEL);
571 if (!exynos_pcie) { 571 if (!exynos_pcie)
572 dev_err(&pdev->dev, "no memory for exynos pcie\n");
573 return -ENOMEM; 572 return -ENOMEM;
574 }
575 573
576 pp = &exynos_pcie->pp; 574 pp = &exynos_pcie->pp;
577 575