From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bali.collaboradmins.com (bali.collaboradmins.com [148.251.105.195]) (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 B90B620628E; Mon, 16 Dec 2024 14:10:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=148.251.105.195 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734358234; cv=none; b=V01JNu6TgSmYKvE0LmdaUaH8JyFmdSEdtld5v4iSyeknSk6udwyd2tdzHWITlrAbHaFinYnYsGnDx6cDNwoCi1c284QvfVXMItBYDigTWg2ID2+Kz7lvhwBD2xT/02JE80dqQjnCeO6+I1ipo164r1M3A7pV4yCiBkFJeDFMdHc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734358234; c=relaxed/simple; bh=emtkLwwySWPoWElXvJPFdw/cj1Vtoq6kbUzlYSmOgAU=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=qy9WhiYcaWsifC+KJtXfDWkYN2nOQBQAAbXgiPZ2zk7g0+PqkLl/Y4pMSIacYzF2DLDoaLGlOiD3lcwFUieQaPdyIboEXgNF5mR7AcSdKvlam22N0iFfHbbWybx1/emtGTbRsq36+E7oD5A+xSJ8AEXIWSCdFY1Z6AGOriylafE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com; spf=pass smtp.mailfrom=collabora.com; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b=SVr93H2q; arc=none smtp.client-ip=148.251.105.195 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=collabora.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=collabora.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=collabora.com header.i=@collabora.com header.b="SVr93H2q" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1734358230; bh=emtkLwwySWPoWElXvJPFdw/cj1Vtoq6kbUzlYSmOgAU=; h=Date:Subject:To:References:From:In-Reply-To:From; b=SVr93H2qBzeUxWA7TxhTrqzCuPtPio1LUz/b3TvykZVUKWqPpMACsC9N4uueT2xSX aUYRAXYT+0RCPgZOeuh9Twn8vdFiyD6MX/2ntlUCkxVtJ9908xy67kcXryunfrAuM+ RpDL0dOJ02ayjKx7vnAcb4rFjz9aQfo7NNB/uemSU5SdE5AXllOdrKEZ8xlrURli4p txBHOCQ98PmAGqCkeLH28QCZTssvs9y1PkeRwCtNpscDAgDiQVgP/bc9aEWWugSvcW W3bUMPOcZH48rHLEGgdkkwcjprUW0EX4K1qGQ6U0sRduQe88NRJ/hVuV7GhByZGkhI /21+GQLNSTexg== Received: from [192.168.1.100] (2-237-20-237.ip236.fastwebnet.it [2.237.20.237]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: kholk11) by bali.collaboradmins.com (Postfix) with ESMTPSA id 0876817E3783; Mon, 16 Dec 2024 15:10:29 +0100 (CET) Message-ID: <8cf8accf-51dd-47b1-9b02-07a96e897714@collabora.com> Date: Mon, 16 Dec 2024 15:10:29 +0100 Precedence: bulk X-Mailing-List: linux-clk@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 2/5] clk: mediatek: mt2701-aud: fix conversion to mtk_clk_simple_probe To: Daniel Golle , Michael Turquette , Stephen Boyd , Matthias Brugger , Alexandre Mergnat , Geert Uytterhoeven , =?UTF-8?Q?Uwe_Kleine-K=C3=B6nig?= , Miles Chen , Chen-Yu Tsai , Frank Wunderlich , John Crispin , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, stable@vger.kernel.org References: From: AngeloGioacchino Del Regno Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Il 15/12/24 23:14, Daniel Golle ha scritto: > Some of the audio subsystem clocks defined in clk-mt2701.h aren't > actually used by the driver. This broke conversion to > mtk_clk_simple_probe which expects that the highest possible clk id is > defined by the ARRAY_SIZE. > > Add additional dummy clocks to fill the gaps and remain compatible with > the existing DT bindings. > > Fixes: 0f69a423c458 ("clk: mediatek: Switch to mtk_clk_simple_probe() where possible") > Cc: stable@vger.kernel.org > Signed-off-by: Daniel Golle Reviewed-by: AngeloGioacchino Del Regno