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

#ifndef __SOC_STM32_REBOOT_H_
#define __SOC_STM32_REBOOT_H_

#include <linux/compiler.h>

struct device_d;

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

#endif