thermal: exynos: remove unnecessary OOM messages
authorJingoo Han <jg1.han@samsung.com>
Wed, 7 May 2014 06:04:48 +0000 (15:04 +0900)
committerZhang Rui <rui.zhang@intel.com>
Thu, 15 May 2014 09:15:26 +0000 (17:15 +0800)
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: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/samsung/exynos_tmu.c

index ffccc89..c4dc81c 100644 (file)
@@ -611,10 +611,8 @@ static int exynos_tmu_probe(struct platform_device *pdev)
 
        data = devm_kzalloc(&pdev->dev, sizeof(struct exynos_tmu_data),
                                        GFP_KERNEL);
-       if (!data) {
-               dev_err(&pdev->dev, "Failed to allocate driver structure\n");
+       if (!data)
                return -ENOMEM;
-       }
 
        platform_set_drvdata(pdev, data);
        mutex_init(&data->lock);
@@ -660,7 +658,6 @@ static int exynos_tmu_probe(struct platform_device *pdev)
        sensor_conf = devm_kzalloc(&pdev->dev,
                                sizeof(struct thermal_sensor_conf), GFP_KERNEL);
        if (!sensor_conf) {
-               dev_err(&pdev->dev, "Failed to allocate registration struct\n");
                ret = -ENOMEM;
                goto err_clk;
        }