zephyr/drivers/fuel_gauge/Kconfig
Aaron Massey a2e0a860a6 fuel_gauge: Add init priority
Add an device driver initialization priority for fuel gauge drivers.

Signed-off-by: Aaron Massey <aaronmassey@google.com>
2023-03-17 09:29:39 +01:00

25 lines
500 B
Plaintext

# Copyright 2022 Google LLC
#
# SPDX-License-Identifier: Apache-2.0
menuconfig FUEL_GAUGE
bool "Battery fuel gauge drivers"
help
Enable battery fuel gauge driver configuration.
if FUEL_GAUGE
module = FUEL_GAUGE
module-str = fuel_gauge
source "subsys/logging/Kconfig.template.log_config"
config FUEL_GAUGE_INIT_PRIORITY
int "Battery Fuel Gauge init priority"
default 90
help
Battery fuel gauge initialization priority.
source "drivers/fuel_gauge/sbs_gauge/Kconfig"
endif # FUEL_GAUGE