From nobody Fri Oct 3 23:11:40 2025 Received: from vs81.iboxed.net (vs10.datenmanufaktur-hosting.net [213.160.73.65]) (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 565F725E80B; Sat, 23 Aug 2025 14:40:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=213.160.73.65 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755960002; cv=none; b=sWrOP08Vd61eevJ3GsrjNTneEERDhJTrfhljxgtiXeALJgQgo2LtVXRMO4DedRMDk4EYHZ6gsdJ/mSn1dGiCTj92lv07kqvaxBFNqRC7a8BH2jDXBFpCySgH4gVd/ri27k21d3ckxTsgBYOhKLAH2PQRCkAWYaT+I/4MHR35ZDY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755960002; c=relaxed/simple; bh=0+IqykIZ5TbtogQ0NeEszQ9meNkcBVCBP7kmsiruBfc=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=OP0RTu0wGQSv2mPKA/9aE2e4Jqw425EIHd8G1j5ZzKdFqGLmA5kXfNKskzI7Jui1Jy9DgdfwN48SIMvwlP3RF46yUQQ40mU6o2T3hDu2ruLeZTxwKe91uqeG0aBwZcoKB5RU+uzMRnAG4sUZbjJjq8ihfoRqgOOw6ypx0ElHlMo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=blala.de; spf=pass smtp.mailfrom=blala.de; arc=none smtp.client-ip=213.160.73.65 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=blala.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=blala.de Received: from blala.de (localhost [127.0.0.1]) by vs81.iboxed.net (8.15.2/8.15.2/Debian-14~deb10u1) with ESMTP id 57NEit8M012763; Sat, 23 Aug 2025 14:44:55 GMT Received: (from akurz@localhost) by blala.de (8.15.2/8.15.2/Submit) id 57NEitrp012758; Sat, 23 Aug 2025 14:44:55 GMT From: Alexander Kurz To: Lee Jones , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Dmitry Torokhov , Dzmitry Sankouski , "Dr. David Alan Gilbert" , Heiko Stuebner , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , devicetree@vger.kernel.org, linux-input@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Alexander Kurz Subject: [PATCH v2 8/9] leds: mc13783: use fsl,led-control as node name Date: Sat, 23 Aug 2025 14:44:40 +0000 Message-Id: <20250823144441.12654-9-akurz@blala.de> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20250823144441.12654-1-akurz@blala.de> References: <20250823144441.12654-1-akurz@blala.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" According to fsl,mc13xxx.yaml, the node name for led-control is vendor prefixed. Change it accordingly. Signed-off-by: Alexander Kurz --- drivers/leds/leds-mc13783.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/leds/leds-mc13783.c b/drivers/leds/leds-mc13783.c index e22f09d13798..11add1fd24ce 100644 --- a/drivers/leds/leds-mc13783.c +++ b/drivers/leds/leds-mc13783.c @@ -127,7 +127,7 @@ static struct mc13xxx_leds_platform_data __init *mc13xx= x_led_probe_dt( if (!parent) return ERR_PTR(-ENODATA); =20 - ret =3D of_property_read_u32_array(parent, "led-control", + ret =3D of_property_read_u32_array(parent, "fsl,led-control", pdata->led_control, leds->devtype->num_regs); if (ret) --=20 2.39.5