Adds the BQ24190 driver to the build_all test. Signed-off-by: Ricardo Rivera-Matos <ricardo.rivera-matos@cirrus.com>
24 lines
420 B
Text
24 lines
420 B
Text
/*
|
|
* Copyright (c) 2023 Cirrus Logic, Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/dt-bindings/i2c/i2c.h>
|
|
|
|
/ {
|
|
test {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
test_i2c: i2c@11112222 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
compatible = "vnd,i2c";
|
|
reg = <0x11112222 0x1000>;
|
|
status = "okay";
|
|
clock-frequency = <I2C_BITRATE_STANDARD>;
|
|
|
|
#include "i2c.dtsi"
|
|
};
|
|
};
|
|
};
|