Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp3056310imm; Sun, 1 Jul 2018 11:12:59 -0700 (PDT) X-Google-Smtp-Source: AAOMgpeHLJxMnnbk0xXRrwIo7OK5i7RUwrzW8gILsUTWFldPFO5vauJQzenAe9ALxb7eHP0l45E+ X-Received: by 2002:a62:8181:: with SMTP id t123-v6mr9742518pfd.141.1530468779085; Sun, 01 Jul 2018 11:12:59 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530468779; cv=none; d=google.com; s=arc-20160816; b=g+ej9/kjnBSMXwK2hLYs0wldty2OF1msNjnRf1fZHZDvPsXX6+V95Uc8ie9fFpMOIB dEs54wogppCrheak/58/7AzOWADzUFxdeatpq/wbgBagHf69b62TFvOp58K4nRFIZQir M/KJrtYT3AHOxus4qRZmKDsKD6nEhLpdKZTof7CxdaU2yaPRaW5sMwP7sxLaqXhJH77I Oh3eNXfOmvdX1crZ9stgEZWFFGNTTAbpqzGYa/F7nPIjUF5dOR68aBscukKZN7YQxMQ9 kNJIf534spRsl6Ek1ZKueyiVdQuvPic2r6EHSk+0ZrdAI4hURjTUWgqA5iKbOC9XmyE4 seaQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=UzaejfyvLNC9rhA1H0Hln2PoYKq/n7BmanOdMolY634=; b=CocOH2TCqPgSfbNVcJgcMP0HNwk83LbFPQVd3sKuqTuoxnCgfNI3K+BJo3LILKMQKV 9ejr/yiYE370rBzbbtCfC3t+RwNfIs5udOVEO2dcVAXL1KoU/OkTcRF3o0/4e61ISy+4 GCPVvsmhOVZuTpHyvvgHUuebMuzIXHa/ZY6IcFydrGKZNqOZOMyoAKx0WYjgTdcIvK0t CKahy2xFwSeYQDJy4nrGWPBDd7rS4E2e4nAI9VPWNo0m7uq0HBMtGcZitmFar7UPFec7 ky0b/OO6lZdqd1BmntKE3iI6idtzxKxxZy5+LdteCKiGknrh8dRO8qqZ+zfNELUjm3gR HFnQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v4-v6si11850411pgf.488.2018.07.01.11.12.44; Sun, 01 Jul 2018 11:12:59 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965530AbeGAQ1g (ORCPT + 99 others); Sun, 1 Jul 2018 12:27:36 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:34118 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965028AbeGAQ1a (ORCPT ); Sun, 1 Jul 2018 12:27:30 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 0EFA092B; Sun, 1 Jul 2018 16:27:29 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Johan Hovold , Daniel Thompson , Lee Jones Subject: [PATCH 4.9 071/101] backlight: as3711_bl: Fix Device Tree node lookup Date: Sun, 1 Jul 2018 18:21:57 +0200 Message-Id: <20180701160800.008732720@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180701160757.138608453@linuxfoundation.org> References: <20180701160757.138608453@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Johan Hovold commit 4a9c8bb2aca5b5a2a15744333729745dd9903562 upstream. Fix child-node lookup during probe, which ended up searching the whole device tree depth-first starting at the parent rather than just matching on its children. To make things worse, the parent mfd node was also prematurely freed. Cc: stable # 3.10 Fixes: 59eb2b5e57ea ("drivers/video/backlight/as3711_bl.c: add OF support") Signed-off-by: Johan Hovold Acked-by: Daniel Thompson Signed-off-by: Lee Jones Signed-off-by: Greg Kroah-Hartman --- drivers/video/backlight/as3711_bl.c | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) --- a/drivers/video/backlight/as3711_bl.c +++ b/drivers/video/backlight/as3711_bl.c @@ -262,10 +262,10 @@ static int as3711_bl_register(struct pla static int as3711_backlight_parse_dt(struct device *dev) { struct as3711_bl_pdata *pdata = dev_get_platdata(dev); - struct device_node *bl = - of_find_node_by_name(dev->parent->of_node, "backlight"), *fb; + struct device_node *bl, *fb; int ret; + bl = of_get_child_by_name(dev->parent->of_node, "backlight"); if (!bl) { dev_dbg(dev, "backlight node not found\n"); return -ENODEV; @@ -279,7 +279,7 @@ static int as3711_backlight_parse_dt(str if (pdata->su1_max_uA <= 0) ret = -EINVAL; if (ret < 0) - return ret; + goto err_put_bl; } fb = of_parse_phandle(bl, "su2-dev", 0); @@ -292,7 +292,7 @@ static int as3711_backlight_parse_dt(str if (pdata->su2_max_uA <= 0) ret = -EINVAL; if (ret < 0) - return ret; + goto err_put_bl; if (of_find_property(bl, "su2-feedback-voltage", NULL)) { pdata->su2_feedback = AS3711_SU2_VOLTAGE; @@ -314,8 +314,10 @@ static int as3711_backlight_parse_dt(str pdata->su2_feedback = AS3711_SU2_CURR_AUTO; count++; } - if (count != 1) - return -EINVAL; + if (count != 1) { + ret = -EINVAL; + goto err_put_bl; + } count = 0; if (of_find_property(bl, "su2-fbprot-lx-sd4", NULL)) { @@ -334,8 +336,10 @@ static int as3711_backlight_parse_dt(str pdata->su2_fbprot = AS3711_SU2_GPIO4; count++; } - if (count != 1) - return -EINVAL; + if (count != 1) { + ret = -EINVAL; + goto err_put_bl; + } count = 0; if (of_find_property(bl, "su2-auto-curr1", NULL)) { @@ -355,11 +359,20 @@ static int as3711_backlight_parse_dt(str * At least one su2-auto-curr* must be specified iff * AS3711_SU2_CURR_AUTO is used */ - if (!count ^ (pdata->su2_feedback != AS3711_SU2_CURR_AUTO)) - return -EINVAL; + if (!count ^ (pdata->su2_feedback != AS3711_SU2_CURR_AUTO)) { + ret = -EINVAL; + goto err_put_bl; + } } + of_node_put(bl); + return 0; + +err_put_bl: + of_node_put(bl); + + return ret; } static int as3711_backlight_probe(struct platform_device *pdev)