1
0
Fork 0

ARM: tegra: remove vpr_configured() function

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>
utp
Alexandre Courbot 2015-10-19 13:57:01 +09:00 committed by Tom Warren
parent f35cb12511
commit 36e5f7ce1c
2 changed files with 1 additions and 12 deletions

View File

@ -11,7 +11,6 @@
#if defined(CONFIG_TEGRA_GPU)
void config_gpu(void);
bool gpu_configured(void);
#else /* CONFIG_TEGRA_GPU */
@ -19,11 +18,6 @@ static inline void config_gpu(void)
{
}
static inline bool gpu_configured(void)
{
return false;
}
#endif /* CONFIG_TEGRA_GPU */
#if defined(CONFIG_OF_LIBFDT)

View File

@ -41,18 +41,13 @@ void config_gpu(void)
_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);