zephyr/drivers/fuel_gauge/sbs_gauge
Roman Studenikin 260fc89643 drivers: use DT_INST_PROP over DT_INST_PROP_OR if possible
It might happens that DT(_INST)_PROP_OR is used with boolean properties.
For instance:

	.single_wire = DT_INST_PROP_OR(index, single_wire, false),	\
	.tx_rx_swap = DT_INST_PROP_OR(index, tx_rx_swap, false),	\

This is not required as boolean properties are generated with false
value when not present, so the _OR macro extension is superflous
and the above code can be replaced by:

	.single_wire = DT_INST_PROP(index, single_wire),		\
	.tx_rx_swap = DT_INST_PROP(index, tx_rx_swap),			\

Signed-off-by: Roman Studenikin <srv@meta.com>
2024-01-30 00:26:58 +00:00
..
CMakeLists.txt emul: Fuel gauge tests direct access to emul_sbs 2023-04-21 09:39:00 +02:00
emul_sbs_gauge.c emul: Remove unused ZTEST_DMEM in sbs emulator 2023-09-12 17:23:00 +01:00
Kconfig emul: Fuel gauge tests direct access to emul_sbs 2023-04-21 09:39:00 +02:00
Kconfig.emul_sbs_gauge emul: Migrate all emulation use to use DT_HAS_ 2023-04-28 08:37:33 -05:00
sbs_gauge.c drivers: use DT_INST_PROP over DT_INST_PROP_OR if possible 2024-01-30 00:26:58 +00:00
sbs_gauge.h fuel_gauge: Add battery cutoff support 2023-08-22 18:05:50 +02:00