diff options
author | Frederik Schwarzer <schwarzerf@gmail.com> | 2008-12-23 02:54:00 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-01-06 13:28:06 +0300 |
commit | c03264a790acacb94839be11b95ff9363a768f6b (patch) | |
tree | ea9abd3f579837257d51b03967875c2f8f894c06 | |
parent | 3a4e367832da8a2614f7ff1321483e30404d6dfe (diff) | |
download | linux-c03264a790acacb94839be11b95ff9363a768f6b.tar.xz |
trivial: fix singal -> signal typo
Typo fix.
Signed-off-by: Frederik Schwarzer <schwarzerf@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | arch/cris/arch-v32/kernel/signal.c | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_error.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/cris/arch-v32/kernel/signal.c b/arch/cris/arch-v32/kernel/signal.c index da7d2be000ba..372d0ca6efbc 100644 --- a/arch/cris/arch-v32/kernel/signal.c +++ b/arch/cris/arch-v32/kernel/signal.c @@ -456,7 +456,7 @@ give_sigsegv: return -EFAULT; } -/* Invoke a singal handler to, well, handle the signal. */ +/* Invoke a signal handler to, well, handle the signal. */ static inline int handle_signal(int canrestart, unsigned long sig, siginfo_t *info, struct k_sigaction *ka, diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index 381838ebd460..d86ebea9350a 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c @@ -1650,7 +1650,7 @@ int scsi_error_handler(void *data) * We use TASK_INTERRUPTIBLE so that the thread is not * counted against the load average as a running process. * We never actually get interrupted because kthread_run - * disables singal delivery for the created thread. + * disables signal delivery for the created thread. */ set_current_state(TASK_INTERRUPTIBLE); while (!kthread_should_stop()) { |