There is no justification for this function, especially in exported
form.
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
 #if defined(CONFIG_TEGRA_GPU)
 
 void config_gpu(void);
-bool gpu_configured(void);
 
 #else /* CONFIG_TEGRA_GPU */
 
 {
 }
 
-static inline bool gpu_configured(void)
-{
-       return false;
-}
-
 #endif /* CONFIG_TEGRA_GPU */
 
 #if defined(CONFIG_OF_LIBFDT)
 
        _configured = true;
 }
 
-bool vpr_configured(void)
-{
-       return _configured;
-}
-
 #if defined(CONFIG_OF_LIBFDT)
 
 int gpu_enable_node(void *blob, const char *gpupath)
 {
        int offset;
 
-       if (vpr_configured()) {
+       if (_configured) {
                offset = fdt_path_offset(blob, gpupath);
                if (offset > 0) {
                        fdt_status_okay(blob, offset);