diff options
author | Justin Waters <justin.waters@timesys.com> | 2008-05-30 15:33:16 -0400 |
---|---|---|
committer | Justin Waters <justin.waters@timesys.com> | 2008-05-30 15:33:16 -0400 |
commit | 989b0f9d9d8636e34b67919cbe1035f9888389c6 (patch) | |
tree | b116146bc30e5a58d54218e9a67f1d7489c9fc09 /arch | |
parent | f4caf9ceb85fe00b3ef01be916c529c624228a73 (diff) |
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 <justin.waters@timeys.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mx27/time.c | 1 |
1 files changed, 1 insertions, 0 deletions
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: |