mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 04:01:56 +00:00
Fixes #3923 Signed-off-by: Maciej Debski <maciej.debski@rndity.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
24 lines
532 B
C
24 lines
532 B
C
/*
|
|
* 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 _STM32_CLOCK_CONTROL_H_
|
|
#define _STM32_CLOCK_CONTROL_H_
|
|
|
|
#include <clock_control.h>
|
|
#include <dt-bindings/clock/stm32_clock.h>
|
|
|
|
/* common clock control device name for all STM32 chips */
|
|
#define STM32_CLOCK_CONTROL_NAME "stm32-cc"
|
|
|
|
struct stm32_pclken {
|
|
u32_t bus;
|
|
u32_t enr;
|
|
};
|
|
|
|
#endif /* _STM32_CLOCK_CONTROL_H_ */
|