thermal: spear: 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>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
This commit is contained in:
Jingoo Han 2014-05-07 15:05:32 +09:00 committed by Zhang Rui
parent 2a9675b39a
commit fa018d3eed
1 changed files with 1 additions and 3 deletions

View File

@ -113,10 +113,8 @@ static int spear_thermal_probe(struct platform_device *pdev)
}
stdev = devm_kzalloc(&pdev->dev, sizeof(*stdev), GFP_KERNEL);
if (!stdev) {
dev_err(&pdev->dev, "kzalloc fail\n");
if (!stdev)
return -ENOMEM;
}
/* Enable thermal sensor */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);