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 6C3714EB51 for ; Sat, 25 May 2024 15:10:31 +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=1716649832; cv=none; b=iNlWvvbd2nGJWCOtUEwbpFWScnv7fJ66SXOSFleERGNd12N67qVmJgSPYS/YN1z/9K/xhT5ric+zHtRerKn1ISuheMr7RvcaxeYfxixnfbVshGG7N5p8NYIZZqm+5OPkhZuC/n78Zg0l954tWvnY7wzn4KaQsCH8dDvM7GkyCIo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716649832; c=relaxed/simple; bh=Bw8ZO3JRQa/UPWmOH/zE7pcqvvaIJIVC+hNqpWtq8pg=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=h7lXP6rKbjMV4W9D70HXTv8LhUI/aDTk6PT5OJIVZKwljuvAXb3t+ZStOxl1U+h5sPuFWmjVp5X5vgB7Hh+ETJ3XMUmwwfua/DqfTtzY9vRoKFL6d4aw6hAXgmJUlK8jeMdVYbmrX8fcxK7dRZXsicZXEFv4AWmtUu+2f/AmHUM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=kg8FIg9W; 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="kg8FIg9W" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 94062C2BD11; Sat, 25 May 2024 15:10:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1716649831; bh=Bw8ZO3JRQa/UPWmOH/zE7pcqvvaIJIVC+hNqpWtq8pg=; h=Subject:To:Cc:From:Date:From; b=kg8FIg9WQSkmc17JQRABDePNUFJ1NbqEhTRECzGSt6UFvdKcA3fuVKSSebNN4uuXn uzwjOVm/oFFCm6mALbr6pg9vm3IjiL9icWuMTqwcMEtIfYLu9VQ+6KPK4QgV8npG9n noSphsUkfDymQm2uOgoHYmTKaN0hKL9X+F/7gRLk= Subject: FAILED: patch "[PATCH] dt-bindings: adc: axi-adc: add clocks property" failed to apply to 6.1-stable tree To: nuno.sa@analog.com,Jonathan.Cameron@huawei.com,Stable@ver.kernel.org,krzysztof.kozlowski@linaro.org Cc: From: Date: Sat, 25 May 2024 17:10:20 +0200 Message-ID: <2024052520-dainty-reflected-ff22@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.1-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.1.y git checkout FETCH_HEAD git cherry-pick -x 19fb11d7220b8abc016aa254dc7e6d9f2d49b178 # git commit -s git send-email --to '' --in-reply-to '2024052520-dainty-reflected-ff22@gregkh' --subject-prefix 'PATCH 6.1.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 19fb11d7220b8abc016aa254dc7e6d9f2d49b178 Mon Sep 17 00:00:00 2001 From: Nuno Sa Date: Fri, 26 Apr 2024 17:42:12 +0200 Subject: [PATCH] dt-bindings: adc: axi-adc: add clocks property Add a required clock property as we can't access the device registers if the AXI bus clock is not properly enabled. Note this clock is a very fundamental one that is typically enabled pretty early during boot. Independently of that, we should really rely on it to be enabled. Reviewed-by: Krzysztof Kozlowski Fixes: 96553a44e96d ("dt-bindings: iio: adc: add bindings doc for AXI ADC driver") Signed-off-by: Nuno Sa Link: https://lore.kernel.org/r/20240426-ad9467-new-features-v2-3-6361fc3ba1cc@analog.com Cc: Signed-off-by: Jonathan Cameron diff --git a/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml b/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml index 3d49d21ad33d..e1f450b80db2 100644 --- a/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml +++ b/Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml @@ -28,6 +28,9 @@ properties: reg: maxItems: 1 + clocks: + maxItems: 1 + dmas: maxItems: 1 @@ -48,6 +51,7 @@ required: - compatible - dmas - reg + - clocks additionalProperties: false @@ -58,6 +62,7 @@ examples: reg = <0x44a00000 0x10000>; dmas = <&rx_dma 0>; dma-names = "rx"; + clocks = <&axi_clk>; #io-backend-cells = <0>; }; ...