mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
soc: samsung: pmu: Remove messages for failed memory allocation
Memory subsystem already prints message about failed memory allocation, there is no need to do it in the driver. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Reviewed-by: Tomasz Figa <tomasz.figa@gmail.com> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
This commit is contained in:
parent
ec7cc5b15e
commit
1da6de33e4
1 changed files with 1 additions and 3 deletions
|
@ -117,10 +117,8 @@ static int exynos_pmu_probe(struct platform_device *pdev)
|
|||
pmu_context = devm_kzalloc(&pdev->dev,
|
||||
sizeof(struct exynos_pmu_context),
|
||||
GFP_KERNEL);
|
||||
if (!pmu_context) {
|
||||
dev_err(dev, "Cannot allocate memory.\n");
|
||||
if (!pmu_context)
|
||||
return -ENOMEM;
|
||||
}
|
||||
pmu_context->dev = dev;
|
||||
pmu_context->pmu_data = of_device_get_match_data(dev);
|
||||
|
||||
|
|
Loading…
Reference in a new issue