From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B56A12E1722; Mon, 29 Sep 2025 09:49:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.176.79.56 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759139386; cv=none; b=uVY45r9nfX3MzhGaQYBrxHTTRmDx4t2R0Rx/5vX4ea8lIlwJPbwZ5CPJ2vYA36ds7TD3i9CAX0bX20Nw9H7lJCf+TmQwRyk7rMQFKdcR+EOZvIQE/kCot+SERHjVonPhhg5RCAPjVARFsBwLRLzalOUyWX+KycWN1+TbZO/JPYo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759139386; c=relaxed/simple; bh=a+fsgRg7/1J8kAf6GlWdv/0Gunn02X88JgGpxFD1uQA=; h=Date:From:To:CC:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=K14d6MIfDBFhp9sd7gScLYu68hiPCfX1gcJOPdK1p7QZnaerDj6YFXKZpLBq49JPokrbtXB4gbruG4yaJ6BBmS5E001+lK+AIe28xqqhxG0eC5YSPVpvOP6wHCSIVdpoYW3TPFsQRH2eb9Mw5aJSs0jDG0LmXMUu1tcYG+0fK7c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=185.176.79.56 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.18.186.231]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4cZxCw2hTXz6M4Vm; Mon, 29 Sep 2025 17:46:36 +0800 (CST) Received: from dubpeml100005.china.huawei.com (unknown [7.214.146.113]) by mail.maildlp.com (Postfix) with ESMTPS id 870AD1402F4; Mon, 29 Sep 2025 17:49:41 +0800 (CST) Received: from localhost (10.47.64.220) by dubpeml100005.china.huawei.com (7.214.146.113) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Mon, 29 Sep 2025 10:49:39 +0100 Date: Mon, 29 Sep 2025 10:49:38 +0100 From: Jonathan Cameron To: Sakari Ailus CC: , , , , , , , "Rafael J. Wysocki" , "Len Brown" , Greg Kroah-Hartman , Danilo Krummrich , Andy Shevchenko , Daniel Scally , Heikki Krogerus , Javier Carrasco , Dmitry Torokhov , Lee Jones , Pavel Machek , Matthias Fend , Chanwoo Choi , Krzysztof Kozlowski , "Laurent Pinchart" , Paul Elder , Mauro Carvalho Chehab , Horatiu Vultur , , Andrew Lunn , "David S. Miller" , Eric Dumazet , "Jakub Kicinski" , Paolo Abeni , Mark Brown , Thomas Gleixner , Ingo Molnar Subject: Re: [PATCH v2 11/16] Input: touch-overlay - Use fwnode_for_each_child_node() instead Message-ID: <20250929104938.000000b7@huawei.com> In-Reply-To: <20250924074602.266292-12-sakari.ailus@linux.intel.com> References: <20250924074602.266292-1-sakari.ailus@linux.intel.com> <20250924074602.266292-12-sakari.ailus@linux.intel.com> X-Mailer: Claws Mail 4.3.0 (GTK 3.24.42; x86_64-w64-mingw32) Precedence: bulk X-Mailing-List: linux-input@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-ClientProxiedBy: lhrpeml500012.china.huawei.com (7.191.174.4) To dubpeml100005.china.huawei.com (7.214.146.113) On Wed, 24 Sep 2025 10:45:57 +0300 Sakari Ailus wrote: > fwnode_for_each_child_node() is now the same as > fwnode_for_each_available_child_node() on all backends (OF, ACPI and > swnode). In order to remove the available variants, switch the uses to > non-available variants. > > Signed-off-by: Sakari Ailus Another mechanical change. Reviewed-by: Jonathan Cameron > --- > drivers/input/touch-overlay.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/input/touch-overlay.c b/drivers/input/touch-overlay.c > index b9fd82c4829d..7eaaaef1bd82 100644 > --- a/drivers/input/touch-overlay.c > +++ b/drivers/input/touch-overlay.c > @@ -82,7 +82,7 @@ int touch_overlay_map(struct list_head *list, struct input_dev *input) > if (!overlay) > return 0; > > - fwnode_for_each_available_child_node(overlay, fw_segment) { > + fwnode_for_each_child_node(overlay, fw_segment) { > segment = devm_kzalloc(dev, sizeof(*segment), GFP_KERNEL); > if (!segment) { > fwnode_handle_put(fw_segment);