summaryrefslogtreecommitdiff
path: root/drivers/pci
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-05-09 14:31:25 +0900
committerNitin Garg <nitin.garg@freescale.com>2015-01-15 21:18:44 -0600
commit128ae9e16a9b00a8074525f467c852334befacb8 (patch)
tree0ac40e35889bf6292c3caba66c27748b764e7895 /drivers/pci
parent2cf3c51e39618194d4c1ae79151f8b0c51b38fd5 (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> (cherry picked from commit 755ba5e406e5ddd876e85a881dc50c7f54a8fd6b)
Diffstat (limited to 'drivers/pci')
-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 32c6d567e12a..2ccc44257645 100644
--- a/drivers/pci/host/pci-exynos.c
+++ b/drivers/pci/host/pci-exynos.c
@@ -567,10 +567,8 @@ static int __init exynos_pcie_probe(struct platform_device *pdev)
exynos_pcie = devm_kzalloc(&pdev->dev, sizeof(*exynos_pcie),
GFP_KERNEL);
- if (!exynos_pcie) {
- dev_err(&pdev->dev, "no memory for exynos pcie\n");
+ if (!exynos_pcie)
return -ENOMEM;
- }
pp = &exynos_pcie->pp;