diff options
author | Scott Anderson <saa@google.com> | 2011-08-31 13:26:06 -0700 |
---|---|---|
committer | Todd Poynor <toddpoynor@google.com> | 2011-09-05 12:32:04 -0700 |
commit | 31f30b83553e7ca7bbed2a4254d58f2e666cd54d (patch) | |
tree | f1d11136aed8229a77145a0d42a2275a2cf85a64 /arch/arm/mach-omap2/dmtimer.c | |
parent | 3d823d32cd0c1f80c7e8a1ff2631db6bd45a33eb (diff) | |
download | kernel_samsung_tuna-31f30b83553e7ca7bbed2a4254d58f2e666cd54d.zip kernel_samsung_tuna-31f30b83553e7ca7bbed2a4254d58f2e666cd54d.tar.gz kernel_samsung_tuna-31f30b83553e7ca7bbed2a4254d58f2e666cd54d.tar.bz2 |
OMAP2+: dmtimer: Fix miscompile for !CONFIG_PM
The stub for omap_timer_get_context_loss was incorrectly named
omap_gpio_get_context_loss.
Change-Id: I5254d93f23d6ca6fd11d69c419d508164965a4a3
Signed-off-by: Scott Anderson <saa@google.com>
Diffstat (limited to 'arch/arm/mach-omap2/dmtimer.c')
-rw-r--r-- | arch/arm/mach-omap2/dmtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/dmtimer.c b/arch/arm/mach-omap2/dmtimer.c index 9b27d4f..de25e98 100644 --- a/arch/arm/mach-omap2/dmtimer.c +++ b/arch/arm/mach-omap2/dmtimer.c @@ -101,7 +101,7 @@ static int omap_timer_get_context_loss(struct device *dev) } #else -#define omap_gpio_get_context_loss NULL +#define omap_timer_get_context_loss NULL #endif struct omap_device_pm_latency omap2_dmtimer_latency[] = { |