diff options
author | Naresh Solanki <naresh.solanki@9elements.com> | 2023-12-05 13:52:04 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-12-06 16:14:54 +0300 |
commit | 16e5ac127d8d18adf85fe5ba847d77b58d1ed418 (patch) | |
tree | 96801e386a05ff7c824500ae7cb816d91999f9af /drivers/regulator/Kconfig | |
parent | 753e4d5c433da57da75dd4c3e1aececc8e874a62 (diff) | |
download | linux-16e5ac127d8d18adf85fe5ba847d77b58d1ed418.tar.xz |
regulator: event: Add regulator netlink event support
This commit introduces netlink event support to the regulator subsystem.
Changes:
- Introduce event.c and regnl.h for netlink event handling.
- Implement reg_generate_netlink_event to broadcast regulator events.
- Update Makefile to include the new event.c file.
Signed-off-by: Naresh Solanki <naresh.solanki@9elements.com>
Link: https://lore.kernel.org/r/20231205105207.1262928-1-naresh.solanki@9elements.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/Kconfig')
-rw-r--r-- | drivers/regulator/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index f3ec24691378..550145f82726 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -56,6 +56,16 @@ config REGULATOR_USERSPACE_CONSUMER If unsure, say no. +config REGULATOR_NETLINK_EVENTS + bool "Enable support for receiving regulator events via netlink" + depends on NET + help + Enabling this option allows the kernel to broadcast regulator events using + the netlink mechanism. User-space applications can subscribe to these events + for real-time updates on various regulator events. + + If unsure, say no. + config REGULATOR_88PG86X tristate "Marvell 88PG86X voltage regulators" depends on I2C |