1 /*
2  *  (C) Copyright 2015
3  *  NVIDIA Corporation <www.nvidia.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #ifndef __ASM_ARCH_TEGRA_GPU_H
9 #define __ASM_ARCH_TEGRA_GPU_H
10 
11 #if defined(CONFIG_TEGRA_GPU)
12 
13 void config_gpu(void);
14 bool gpu_configured(void);
15 
16 #else /* CONFIG_TEGRA_GPU */
17 
18 static inline void config_gpu(void)
19 {
20 }
21 
22 static inline bool gpu_configured(void)
23 {
24 	return false;
25 }
26 
27 #endif /* CONFIG_TEGRA_GPU */
28