diff options
author | Adam Buchbinder <adam.buchbinder@gmail.com> | 2016-02-23 18:24:55 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-03-11 04:29:53 -0500 |
commit | 7423cc0caee7a42735ee2908f24ec69957c9bc85 (patch) | |
tree | 7c93b6feff3331233bafd7236d8ab95e13eadfef /arch/arc/kernel | |
parent | fc77dbd34c5c99bce46d40a2491937c3bcbd10af (diff) |
ARC: Fix misspellings in comments.
Signed-off-by: Adam Buchbinder <adam.buchbinder@gmail.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel')
-rw-r--r-- | arch/arc/kernel/stacktrace.c | 2 | ||||
-rw-r--r-- | arch/arc/kernel/time.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/arc/kernel/stacktrace.c b/arch/arc/kernel/stacktrace.c index 001de4ce711e..e0efff15a5ae 100644 --- a/arch/arc/kernel/stacktrace.c +++ b/arch/arc/kernel/stacktrace.c | |||
@@ -232,7 +232,7 @@ void show_stack(struct task_struct *tsk, unsigned long *sp) | |||
232 | } | 232 | } |
233 | 233 | ||
234 | /* Another API expected by schedular, shows up in "ps" as Wait Channel | 234 | /* Another API expected by schedular, shows up in "ps" as Wait Channel |
235 | * Ofcourse just returning schedule( ) would be pointless so unwind until | 235 | * Of course just returning schedule( ) would be pointless so unwind until |
236 | * the function is not in schedular code | 236 | * the function is not in schedular code |
237 | */ | 237 | */ |
238 | unsigned int get_wchan(struct task_struct *tsk) | 238 | unsigned int get_wchan(struct task_struct *tsk) |
diff --git a/arch/arc/kernel/time.c b/arch/arc/kernel/time.c index 156d9833ff84..7d9a736fc7e5 100644 --- a/arch/arc/kernel/time.c +++ b/arch/arc/kernel/time.c | |||
@@ -55,8 +55,8 @@ | |||
55 | #define ARC_REG_TIMER1_CTRL 0x101 /* timer 1 control */ | 55 | #define ARC_REG_TIMER1_CTRL 0x101 /* timer 1 control */ |
56 | #define ARC_REG_TIMER1_CNT 0x100 /* timer 1 count */ | 56 | #define ARC_REG_TIMER1_CNT 0x100 /* timer 1 count */ |
57 | 57 | ||
58 | #define TIMER_CTRL_IE (1 << 0) /* Interupt when Count reachs limit */ | 58 | #define TIMER_CTRL_IE (1 << 0) /* Interrupt when Count reaches limit */ |
59 | #define TIMER_CTRL_NH (1 << 1) /* Count only when CPU NOT halted */ | 59 | #define TIMER_CTRL_NH (1 << 1) /* Count only when CPU NOT halted */ |
60 | 60 | ||
61 | #define ARC_TIMER_MAX 0xFFFFFFFF | 61 | #define ARC_TIMER_MAX 0xFFFFFFFF |
62 | 62 | ||