Message ID | 20210519091613.7343-1-stephan@gerhold.net (mailing list archive) |
---|---|
State | Accepted |
Commit | 9cc52f5a533a321136b9e447042ad9f8224f738c |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [v2,1/2] dt-bindings: net: nfc: s3fwrn5: Add optional clock | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | success | CCed 8 of 8 maintainers |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 17 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
On 19/05/2021 05:16, Stephan Gerhold wrote: > On some systems, S3FWRN5 depends on having an external clock enabled > to function correctly. Allow declaring that clock in the device tree. > > Signed-off-by: Stephan Gerhold <stephan@gerhold.net> > --- > Changes in v2: Minor change in commit message only > v1: https://lore.kernel.org/netdev/20210518133935.571298-1-stephan@gerhold.net/ > --- > .../devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml | 5 +++++ > 1 file changed, 5 insertions(+) > Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Best regards, Krzysztof
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Wed, 19 May 2021 11:16:12 +0200 you wrote: > On some systems, S3FWRN5 depends on having an external clock enabled > to function correctly. Allow declaring that clock in the device tree. > > Signed-off-by: Stephan Gerhold <stephan@gerhold.net> > --- > Changes in v2: Minor change in commit message only > v1: https://lore.kernel.org/netdev/20210518133935.571298-1-stephan@gerhold.net/ > > [...] Here is the summary with links: - [v2,1/2] dt-bindings: net: nfc: s3fwrn5: Add optional clock https://git.kernel.org/netdev/net-next/c/9cc52f5a533a - [v2,2/2] nfc: s3fwrn5: i2c: Enable optional clock from device tree https://git.kernel.org/netdev/net-next/c/340f42f7ff0b You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml b/Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml index 477066e2b821..081742c2b726 100644 --- a/Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml +++ b/Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml @@ -27,6 +27,9 @@ properties: reg: maxItems: 1 + clocks: + maxItems: 1 + wake-gpios: maxItems: 1 description: @@ -80,6 +83,8 @@ examples: en-gpios = <&gpf1 4 GPIO_ACTIVE_HIGH>; wake-gpios = <&gpj0 2 GPIO_ACTIVE_HIGH>; + + clocks = <&rpmcc 20>; }; }; # UART example on Raspberry Pi
On some systems, S3FWRN5 depends on having an external clock enabled to function correctly. Allow declaring that clock in the device tree. Signed-off-by: Stephan Gerhold <stephan@gerhold.net> --- Changes in v2: Minor change in commit message only v1: https://lore.kernel.org/netdev/20210518133935.571298-1-stephan@gerhold.net/ --- .../devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml | 5 +++++ 1 file changed, 5 insertions(+)