diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-10-28 14:21:47 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-10-30 11:07:14 -0400 |
commit | 9de55351eeb82106e3b70a282d86a5aa367a6d2e (patch) | |
tree | 32876108d0ec047e6328a666effb66b2025304d3 | |
parent | f0a559aae57cb824c8178d1042c60e5975ceb2a6 (diff) |
libata: fix spelling mistake: 'ambigious' -> 'ambiguous'
Trivial fix to spelling mistakes in ata_parse_force_one().
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | drivers/ata/libata-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 5b1851056ec4..36ea7b59e88d 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -6908,7 +6908,7 @@ static int __init ata_parse_force_one(char **cur, | |||
6908 | return -EINVAL; | 6908 | return -EINVAL; |
6909 | } | 6909 | } |
6910 | if (nr_matches > 1) { | 6910 | if (nr_matches > 1) { |
6911 | *reason = "ambigious value"; | 6911 | *reason = "ambiguous value"; |
6912 | return -EINVAL; | 6912 | return -EINVAL; |
6913 | } | 6913 | } |
6914 | 6914 | ||