mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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>
This commit is contained in:
parent
9b6cf1a012
commit
4f91b11413
1 changed files with 1 additions and 1 deletions
|
@ -4105,7 +4105,7 @@ static long pmcraid_chr_ioctl(
|
|||
hdr = kmalloc(sizeof(struct pmcraid_ioctl_header), GFP_KERNEL);
|
||||
|
||||
if (!hdr) {
|
||||
pmcraid_err("faile to allocate memory for ioctl header\n");
|
||||
pmcraid_err("failed to allocate memory for ioctl header\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue