projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0214f92
)
[ARM] pxa: shut up CLOCK_EVT_MODE_RESUME warning
author
Russell King
<
[email protected]
>
Sat, 27 Oct 2007 14:15:49 +0000
(15:15 +0100)
committer
Russell King
<
[email protected]
>
Wed, 31 Oct 2007 15:21:42 +0000
(15:21 +0000)
Resolve:
CC arch/arm/mach-pxa/time.o
arch/arm/mach-pxa/time.c: In function `pxa_osmr0_set_mode':
arch/arm/mach-pxa/time.c:154: warning: enumeration value `CLOCK_EVT_MODE_RESUME' not handled in switch
Signed-off-by: Russell King <
[email protected]
>
arch/arm/mach-pxa/time.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-pxa/time.c
b/arch/arm/mach-pxa/time.c
index ec4286c7931cfdb821a996565c29ed17699d22cd..a2d45d742ce444872a6761a90500b6651c9e448f 100644
(file)
--- a/
arch/arm/mach-pxa/time.c
+++ b/
arch/arm/mach-pxa/time.c
@@
-151,6
+151,9
@@
pxa_osmr0_set_mode(enum clock_event_mode mode, struct clock_event_device *dev)
OIER &= ~OIER_E0;
raw_local_irq_restore(irqflags);
break;
+
+ case CLOCK_EVT_MODE_RESUME:
+ break;
}
}