d7964cd212
Added an MFD driver for the nPM1300. This driver has register access helper functions that can be used by subsystems. This will avoid each subsystem having to duplicate the register access code. Signed-off-by: Andy Sinclair <andy.sinclair@nordicsemi.no>
25 lines
497 B
Plaintext
25 lines
497 B
Plaintext
# Copyright 2023 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig MFD
|
|
bool "Multi-function device (MFD) drivers"
|
|
help
|
|
Include drivers for multi-function devices
|
|
|
|
if MFD
|
|
|
|
module = MFD
|
|
module-str = mfd
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config MFD_INIT_PRIORITY
|
|
int "Initialization priority"
|
|
default 60
|
|
help
|
|
Multi-function devices initialization priority.
|
|
|
|
source "drivers/mfd/Kconfig.npm1300"
|
|
source "drivers/mfd/Kconfig.npm6001"
|
|
|
|
endif # MFD
|