From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 323587BB01; Wed, 21 Feb 2024 14:22:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708525379; cv=none; b=H6wJwFtc29b9obtz+kIK3WP8VnkVUrq+XcP7igCcdoVdVXHEHqsKuTGKuyPWXNo25rrPMWFw1k1ZK8kaHFpq1DBg/e6mK/Mf8Low8KLk6wGFMSJCk+55UZgGuf+OKFVNMZKgaVqXga2GwlNOxLrCNgxWJeBa2SHFKcWeBUsZpcM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708525379; c=relaxed/simple; bh=PAu5+3hhDe1/2UPNAi4IcEVKEzcdwfeAlwAaIa7YCaU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eJJTp/ZXp85pn8ueiPfHeQ6/wZ3ZY7ctIm2hhG48tpHHPlA7bJl/caq6fRitS6VG7lRcxnqTbXDmaS9hCpdqNXUUyt2YjqSZH93wmnTeSeD6OKttirn1Vd3TTvmdTu8saXgTp8CZNU5lIwCjmniRAqeeeoy4LxszCKxtCCKiOkg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=eGzYXH0o; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="eGzYXH0o" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A8755C433C7; Wed, 21 Feb 2024 14:22:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708525379; bh=PAu5+3hhDe1/2UPNAi4IcEVKEzcdwfeAlwAaIa7YCaU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eGzYXH0ofmR7vPwiMDAkTgUpZicG49u2YrDuFbz/lZtQhd5DRzTuEfHkX+8/P/ziT Z2139oqMx8AL9GusewvwynUEtkHKNFHfrzaclELCGsvoZ2MzCAd2OqTtj5jfT1LSU/ 8vPpgPdKHNTL72EUkF3yF91/MfO5t3FL2/rOdAok= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fabio Estevam , Shawn Guo , Sasha Levin Subject: [PATCH 5.4 110/267] ARM: dts: imx27-apf27dev: Fix LED name Date: Wed, 21 Feb 2024 14:07:31 +0100 Message-ID: <20240221125943.409746462@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240221125940.058369148@linuxfoundation.org> References: <20240221125940.058369148@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Fabio Estevam [ Upstream commit dc35e253d032b959d92e12f081db5b00db26ae64 ] Per leds-gpio.yaml, the led names should start with 'led'. Change it to fix the following dt-schema warning: imx27-apf27dev.dtb: leds: 'user' does not match any of the regexes: '(^led-[0-9a-f]$|led)', 'pinctrl-[0-9]+' from schema $id: http://devicetree.org/schemas/leds/leds-gpio.yaml# Signed-off-by: Fabio Estevam Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm/boot/dts/imx27-apf27dev.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/imx27-apf27dev.dts b/arch/arm/boot/dts/imx27-apf27dev.dts index 68fcb5ce9a9e..3d9bb7fc3be2 100644 --- a/arch/arm/boot/dts/imx27-apf27dev.dts +++ b/arch/arm/boot/dts/imx27-apf27dev.dts @@ -47,7 +47,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_gpio_leds>; - user { + led-user { label = "Heartbeat"; gpios = <&gpio6 14 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; -- 2.43.0