1 /*
2  * Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights
3  * reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef AVS_DRIVER_H
9 #define AVS_DRIVER_H
10 
11 /* AVS Setting. 1:enable / 0:disable */
12 #ifndef AVS_SETTING_ENABLE
13 #define AVS_SETTING_ENABLE	1
14 #endif /* AVS_SETTING_ENABLE */
15 
16 void rcar_avs_init(void);
17 void rcar_avs_setting(void);
18 void rcar_avs_end(void);
19 
20 #endif /* AVS_DRIVER_H */
21