Messages in this thread Patch in this message |  | | From | "Justin P. Mattock" <> | | Subject | [PATCH 1/4]arch:mips:kernel Fix typo "shud" | | Date | Fri, 12 Aug 2011 17:26:11 -0700 |
| |
From: "Justin P. Mattock" <justinmattock@gmail.com>
The patch below fixes a typo.
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
--- arch/mips/kernel/cevt-bcm1480.c | 2 +- arch/mips/kernel/cevt-sb1250.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c index 36c3898..c8d0577 100644 --- a/arch/mips/kernel/cevt-bcm1480.c +++ b/arch/mips/kernel/cevt-bcm1480.c @@ -63,7 +63,7 @@ static void sibyte_set_mode(enum clock_event_mode mode, __raw_writeq(0, cfg); break; - case CLOCK_EVT_MODE_UNUSED: /* shuddup gcc */ + case CLOCK_EVT_MODE_UNUSED: /* quiet gcc */ case CLOCK_EVT_MODE_RESUME: ; } diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c index 590c54f..c189741 100644 --- a/arch/mips/kernel/cevt-sb1250.c +++ b/arch/mips/kernel/cevt-sb1250.c @@ -61,7 +61,7 @@ static void sibyte_set_mode(enum clock_event_mode mode, __raw_writeq(0, cfg); break; - case CLOCK_EVT_MODE_UNUSED: /* shuddup gcc */ + case CLOCK_EVT_MODE_UNUSED: /* quiet gcc */ case CLOCK_EVT_MODE_RESUME: ; } -- 1.7.6
|  |