diff options
author | Jesper Juhl <jj@chaosbits.net> | 2011-10-24 18:45:13 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-12-15 10:35:38 -0500 |
commit | 4f91b1141306417d84da260e3f3dda3b7b536e76 (patch) | |
tree | 3c93390528d4416ac8b023ab46328d6e061452e8 /drivers/scsi/pmcraid.c | |
parent | 9b6cf1a0120a80ec342f10c297efaa0ba79f7ab7 (diff) |
SCSI, pmcraid: Fix spelling error in a pmcraid_err() call
There's a mistake in one of the pmcraid_err() calls in
drivers/scsi/pmcraid.c - 'failed' is misspelled as 'faile'. This patch
fixes that error.
PS. This patch is generated on top of my previous one "[PATCH] SCSI,
pmcraid: Fix kmalloc() argument order in pmcraid_chr_ioctl()".
Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/scsi/pmcraid.c')
-rw-r--r-- | drivers/scsi/pmcraid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index 5163edb925cb..ea8a0b47d66d 100644 --- a/drivers/scsi/pmcraid.c +++ b/drivers/scsi/pmcraid.c | |||
@@ -4105,7 +4105,7 @@ static long pmcraid_chr_ioctl( | |||
4105 | hdr = kmalloc(sizeof(struct pmcraid_ioctl_header), GFP_KERNEL); | 4105 | hdr = kmalloc(sizeof(struct pmcraid_ioctl_header), GFP_KERNEL); |
4106 | 4106 | ||
4107 | if (!hdr) { | 4107 | if (!hdr) { |
4108 | pmcraid_err("faile to allocate memory for ioctl header\n"); | 4108 | pmcraid_err("failed to allocate memory for ioctl header\n"); |
4109 | return -ENOMEM; | 4109 | return -ENOMEM; |
4110 | } | 4110 | } |
4111 | 4111 | ||