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 28BE229BD9D; Tue, 12 Aug 2025 19:15:41 +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=1755026143; cv=none; b=g+0O8L65Om1p7/3CuZ+i9R+XUfYNRMPbcA/42HTKHB+xiapyJPiFDdZzU7JuBSvf9he5ckscj9rEq2IcC6bVlLZ2UzuXopSSBK7eWo7FrNhNlC153fwvnALNY2HyrJYXHyL4gCaK2LHJO1rGkPND4sb/3cmk/DnO5JcCwiJ0Ei8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755026143; c=relaxed/simple; bh=/4Jptqjz2kuUMx3Tk7s9/jSbs0Rx5+CNYRN+dL/DttI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Ex9Nn6y0tQ2oX3fAVm8AoSIZ/OHlriNfGheehqPRIMAOJYxS/F0eYmAT6rR2SUBOOidwjdedfrQMnmja/U/g35ziCaKZ+/6KgjF5pQBSev6qPKl40okXPFq8dhgLtVrWxFeN7EzVKCfRsIm1rEdNUD0OfFQSOH6Q5iw0QhsD/Ww= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=CwXOBqmv; 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="CwXOBqmv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 31EC2C4CEF0; Tue, 12 Aug 2025 19:15:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755026141; bh=/4Jptqjz2kuUMx3Tk7s9/jSbs0Rx5+CNYRN+dL/DttI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CwXOBqmv+H/JU4zF6Hljy2RktU0qK7wu2a8zsNuek6sNHkbsGny1LJYL8Bg//tMam efviQALtDeZWo6+w9W2iHCjVjQWQZXrTXdSm78OJYo8T79KFCFrho3UiQwvo/j1lq/ bCZZMr2HnEDKyXFFxUrVu1pQFvbVY174bpClx8uE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Charles Keepax , Vinod Koul , Sasha Levin Subject: [PATCH 6.15 248/480] soundwire: Correct some property names Date: Tue, 12 Aug 2025 19:47:36 +0200 Message-ID: <20250812174407.684595207@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250812174357.281828096@linuxfoundation.org> References: <20250812174357.281828096@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Charles Keepax [ Upstream commit ae6a0f5b8a5b0ca2e4bf1c0380267ad83aca8401 ] The DisCo properties should be mipi-sdw-paging-supported and mipi-sdw-bank-delay-supported, with an 'ed' on the end. Correct the property names used in sdw_slave_read_prop(). The internal flag bank_delay_support is currently unimplemented, so that being read wrong does not currently affect anything. The two existing users for this helper and the paging_support flag rt1320-sdw.c and rt721-sdca-sdw.c both manually set the flag in their slave properties, thus are not affected by this bug either. Fixes: 56d4fe31af77 ("soundwire: Add MIPI DisCo property helpers") Signed-off-by: Charles Keepax Link: https://lore.kernel.org/r/20250624125507.2866346-1-ckeepax@opensource.cirrus.com Signed-off-by: Vinod Koul Signed-off-by: Sasha Levin --- drivers/soundwire/mipi_disco.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/soundwire/mipi_disco.c b/drivers/soundwire/mipi_disco.c index 65afb28ef8fa..c69b78cd0b62 100644 --- a/drivers/soundwire/mipi_disco.c +++ b/drivers/soundwire/mipi_disco.c @@ -451,10 +451,10 @@ int sdw_slave_read_prop(struct sdw_slave *slave) "mipi-sdw-highPHY-capable"); prop->paging_support = mipi_device_property_read_bool(dev, - "mipi-sdw-paging-support"); + "mipi-sdw-paging-supported"); prop->bank_delay_support = mipi_device_property_read_bool(dev, - "mipi-sdw-bank-delay-support"); + "mipi-sdw-bank-delay-supported"); device_property_read_u32(dev, "mipi-sdw-port15-read-behavior", &prop->p15_behave); -- 2.39.5