summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohan Jonker <[email protected]>2026-06-09 22:22:58 +0200
committerQuentin Schulz <[email protected]>2026-07-23 15:00:08 +0200
commite504d9cffbafbd4dd267ab9a73bf1ee58d89e8e1 (patch)
tree59e261aa7b5a3badc1569ed2bbcc90bbd4619646 /doc
parent30675622843da663933fa4e1a84296d9fd63980a (diff)
rockchip: pinctrl: replace RK_FUNC_n defines
The use of RK_FUNC_n defines is deprecated in the upstream rockchip.h file. Replace all them by the function number. Signed-off-by: Johan Jonker <[email protected]> Reviewed-by: Quentin Schulz <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r--doc/develop/driver-model/serial-howto.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/develop/driver-model/serial-howto.rst b/doc/develop/driver-model/serial-howto.rst
index 17b53e3cabf..8ca9a016f9a 100644
--- a/doc/develop/driver-model/serial-howto.rst
+++ b/doc/develop/driver-model/serial-howto.rst
@@ -97,8 +97,8 @@ Here are some things you might need to consider:
uart2: uart2 {
uart2_xfer: uart2-xfer {
- rockchip,pins = <1 RK_PC2 RK_FUNC_2 &pcfg_pull_up>,
- <1 RK_PC3 RK_FUNC_2 &pcfg_pull_none>;
+ rockchip,pins = <1 RK_PC2 2 &pcfg_pull_up>,
+ <1 RK_PC3 2 &pcfg_pull_none>;
};
...
};