Skip to content

Commit

Permalink
SCSI, pmcraid: Fix spelling error in a pmcraid_err() call
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jesper Juhl authored and Jiri Kosina committed Dec 15, 2011
1 parent 9b6cf1a commit 4f91b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/scsi/pmcraid.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 4f91b11

Please sign in to comment.