diff options
author | Olof Johansson <olof@lixom.net> | 2011-09-08 20:54:21 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2011-10-13 17:08:28 -0400 |
commit | 784278e116d6243f2588e28d2404425858df65b4 (patch) | |
tree | 0564b6513d9b1d6655821fe9f35e41963c24b352 /arch/arm/mach-tegra/powergate.c | |
parent | b28fba2a4e631de99b25a9d4b2d1ba1c65f86f53 (diff) |
ARM: tegra: tegra_powergate_is_powered should be static
Not exported and not used externally.
Also, fix return type. Due to new return type, errors can't be returned
so WARN_ON instead of returning error if a bad parameter is specified.
Signed-off-by: Olof Johansson <olof@lixom.net>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-tegra/powergate.c')
-rw-r--r-- | arch/arm/mach-tegra/powergate.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-tegra/powergate.c b/arch/arm/mach-tegra/powergate.c index 3cee9aa1f2c8..948306491a59 100644 --- a/arch/arm/mach-tegra/powergate.c +++ b/arch/arm/mach-tegra/powergate.c | |||
@@ -89,12 +89,11 @@ int tegra_powergate_power_off(int id) | |||
89 | return tegra_powergate_set(id, false); | 89 | return tegra_powergate_set(id, false); |
90 | } | 90 | } |
91 | 91 | ||
92 | bool tegra_powergate_is_powered(int id) | 92 | static bool tegra_powergate_is_powered(int id) |
93 | { | 93 | { |
94 | u32 status; | 94 | u32 status; |
95 | 95 | ||
96 | if (id < 0 || id >= TEGRA_NUM_POWERGATE) | 96 | WARN_ON(id < 0 || id >= TEGRA_NUM_POWERGATE); |
97 | return -EINVAL; | ||
98 | 97 | ||
99 | status = pmc_read(PWRGATE_STATUS) & (1 << id); | 98 | status = pmc_read(PWRGATE_STATUS) & (1 << id); |
100 | return !!status; | 99 | return !!status; |