1/*
2 * Copyright 2020 Peter Bigot Consulting, LLC
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/ {
7	regulator {
8		compatible = "regulator-fixed";
9		regulator-name = "test";
10		regulator-boot-on;
11		startup-delay-us = <1000000>;
12		off-on-delay-us = <20000>;
13	};
14
15	resources {
16		compatible = "test-regulator-fixed";
17	};
18};
19