From 989b0f9d9d8636e34b67919cbe1035f9888389c6 Mon Sep 17 00:00:00 2001 From: Justin Waters Date: Fri, 30 May 2008 15:33:16 -0400 Subject: MX27 Time: Fix missing case statement There was a missing case statement in one of the functions that triggered a warning. I added it in so that it doesn't do anything. Signed-off-by: Justin Waters --- arch/arm/mach-mx27/time.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-mx27/time.c b/arch/arm/mach-mx27/time.c index 3d471b053a5a..f19a3117d67e 100644 --- a/arch/arm/mach-mx27/time.c +++ b/arch/arm/mach-mx27/time.c @@ -99,6 +99,7 @@ static void mxc_gpt_set_mode(enum clock_event_mode mode, panic("MXC GPT: CLOCK_EVT_MODE_PERIODIC not supported\n"); break; case CLOCK_EVT_MODE_ONESHOT: + case CLOCK_EVT_MODE_RESUME: break; case CLOCK_EVT_MODE_UNUSED: case CLOCK_EVT_MODE_SHUTDOWN: -- cgit v1.2.3