Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Jiancheng Xue | 25824d5 | 2016-04-23 15:40:28 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 HiSilicon Technologies Co., Ltd. |
Jiancheng Xue | 25824d5 | 2016-04-23 15:40:28 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __HISI_RESET_H |
| 7 | #define __HISI_RESET_H |
| 8 | |
| 9 | struct device_node; |
| 10 | struct hisi_reset_controller; |
| 11 | |
| 12 | #ifdef CONFIG_RESET_CONTROLLER |
Jiancheng Xue | 97b7129 | 2016-06-15 14:26:34 +0800 | [diff] [blame] | 13 | struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev); |
Jiancheng Xue | 25824d5 | 2016-04-23 15:40:28 +0800 | [diff] [blame] | 14 | void hisi_reset_exit(struct hisi_reset_controller *rstc); |
| 15 | #else |
Jiancheng Xue | 97b7129 | 2016-06-15 14:26:34 +0800 | [diff] [blame] | 16 | static inline |
| 17 | struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev) |
Jiancheng Xue | 25824d5 | 2016-04-23 15:40:28 +0800 | [diff] [blame] | 18 | { |
| 19 | return 0; |
| 20 | } |
| 21 | static inline void hisi_reset_exit(struct hisi_reset_controller *rstc) |
| 22 | {} |
| 23 | #endif |
| 24 | |
| 25 | #endif /* __HISI_RESET_H */ |