Skip to content
Snippets Groups Projects
Commit 36e5f7ce authored by Alexandre Courbot's avatar Alexandre Courbot Committed by Tom Warren
Browse files

ARM: tegra: remove vpr_configured() function


There is no justification for this function, especially in exported
form.

Signed-off-by: default avatarAlexandre Courbot <acourbot@nvidia.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent f35cb125
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
#if defined(CONFIG_TEGRA_GPU) #if defined(CONFIG_TEGRA_GPU)
void config_gpu(void); void config_gpu(void);
bool gpu_configured(void);
#else /* CONFIG_TEGRA_GPU */ #else /* CONFIG_TEGRA_GPU */
...@@ -19,11 +18,6 @@ static inline void config_gpu(void) ...@@ -19,11 +18,6 @@ static inline void config_gpu(void)
{ {
} }
static inline bool gpu_configured(void)
{
return false;
}
#endif /* CONFIG_TEGRA_GPU */ #endif /* CONFIG_TEGRA_GPU */
#if defined(CONFIG_OF_LIBFDT) #if defined(CONFIG_OF_LIBFDT)
......
...@@ -41,18 +41,13 @@ void config_gpu(void) ...@@ -41,18 +41,13 @@ void config_gpu(void)
_configured = true; _configured = true;
} }
bool vpr_configured(void)
{
return _configured;
}
#if defined(CONFIG_OF_LIBFDT) #if defined(CONFIG_OF_LIBFDT)
int gpu_enable_node(void *blob, const char *gpupath) int gpu_enable_node(void *blob, const char *gpupath)
{ {
int offset; int offset;
if (vpr_configured()) { if (_configured) {
offset = fdt_path_offset(blob, gpupath); offset = fdt_path_offset(blob, gpupath);
if (offset > 0) { if (offset > 0) {
fdt_status_okay(blob, offset); fdt_status_okay(blob, offset);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment