/* * Copyright (c) 2024 TOKITA Hiroshi * SPDX-License-Identifier: Apache-2.0 */ / { test { #address-cells = <1>; #size-cells = <1>; test_gpio: gpio@deadbeef { compatible = "vnd,gpio"; gpio-controller; reg = <0xdeadbeef 0x1000>; #gpio-cells = <0x2>; status = "okay"; }; test_i2c: i2c@11112222 { #address-cells = <1>; #size-cells = <0>; compatible = "vnd,i2c"; reg = <0x11112222 0x1000>; status = "okay"; clock-frequency = <100000>; test_ds3231: ds3231@0 { compatible = "maxim,ds3231"; status = "okay"; reg = <0x0>; }; test_mcp7940n: mcp7940n@1 { compatible = "microchip,mcp7940n"; status = "okay"; reg = <0x1>; }; }; }; };