Browse Source

thermal: rcar: 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: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Jingoo Han 11 năm trước cách đây
mục cha
commit
b0a60d88d6
1 tập tin đã thay đổi với 1 bổ sung4 xóa
  1. 1 4
      drivers/thermal/rcar_thermal.c

+ 1 - 4
drivers/thermal/rcar_thermal.c

@@ -374,10 +374,8 @@ static int rcar_thermal_probe(struct platform_device *pdev)
 	int idle = IDLE_INTERVAL;
 	int idle = IDLE_INTERVAL;
 
 
 	common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL);
 	common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL);
-	if (!common) {
-		dev_err(dev, "Could not allocate common\n");
+	if (!common)
 		return -ENOMEM;
 		return -ENOMEM;
-	}
 
 
 	INIT_LIST_HEAD(&common->head);
 	INIT_LIST_HEAD(&common->head);
 	spin_lock_init(&common->lock);
 	spin_lock_init(&common->lock);
@@ -423,7 +421,6 @@ static int rcar_thermal_probe(struct platform_device *pdev)
 
 
 		priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
 		priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
 		if (!priv) {
 		if (!priv) {
-			dev_err(dev, "Could not allocate priv\n");
 			ret = -ENOMEM;
 			ret = -ENOMEM;
 			goto error_unregister;
 			goto error_unregister;
 		}
 		}