hc
2024-09-20 a36159eec6ca17402b0e146b86efaf76568dc353
kernel/drivers/w1/Kconfig
....@@ -1,7 +1,8 @@
1
+# SPDX-License-Identifier: GPL-2.0-only
12 menuconfig W1
23 tristate "Dallas's 1-wire support"
34 depends on HAS_IOMEM
4
- ---help---
5
+ help
56 Dallas' 1-wire bus is useful to connect slow 1-pin devices
67 such as iButtons and thermal sensors.
78
....@@ -16,16 +17,16 @@
1617 depends on CONNECTOR
1718 bool "Userspace communication over connector"
1819 default y
19
- ---help---
20
+ help
2021 This allows to communicate with userspace using connector. For more
21
- information see <file:Documentation/connector/connector.txt>.
22
+ information see <file:Documentation/driver-api/connector.rst>.
2223 There are three types of messages between w1 core and userspace:
2324 1. Events. They are generated each time new master or slave device found
2425 either due to automatic or requested search.
2526 2. Userspace commands. Includes read/write and search/alarm search commands.
2627 3. Replies to userspace commands.
2728
28
-source drivers/w1/masters/Kconfig
29
-source drivers/w1/slaves/Kconfig
29
+source "drivers/w1/masters/Kconfig"
30
+source "drivers/w1/slaves/Kconfig"
3031
3132 endif # W1