mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 04:11:55 +00:00
Any word started with underscore followed by and uppercase letter or a second underscore is a reserved word according with C99. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
24 lines
640 B
C
24 lines
640 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 ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_STM32_CLOCK_CONTROL_H_
|
|
#define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_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 /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_STM32_CLOCK_CONTROL_H_ */
|