summaryrefslogtreecommitdiffstats
path: root/include/soc/stm32/reboot.h
blob: d6c731f59f74339debfdf47109f940b5204aca52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef __SOC_STM32_REBOOT_H_
#define __SOC_STM32_REBOOT_H_

#include <linux/compiler.h>

#ifdef CONFIG_RESET_STM32
void stm32mp_system_restart_init(void __iomem *rcc);
#else
static inline void stm32mp_system_restart_init(void __iomem *rcc)
{
}
#endif

#endif