123456789101112131415161718192021 |
- /*
- * Copyright (c) 2016 Open-RnD Sp. z o.o.
- * Copyright (c) 2016 BayLibre, SAS
- * Copyright (c) 2017 Linaro Limited.
- * Copyright (c) 2017 RnDity Sp. z o.o.
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_
- #define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_
- #include <drivers/clock_control.h>
- #include <dt-bindings/clock/renesas_rcar_cpg.h>
- struct rcar_cpg_clk {
- uint32_t domain;
- uint32_t module;
- uint32_t rate;
- };
- #endif /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_ */
|