Skip to content

Commit

Permalink
target: Fix typo in drivers/target
Browse files Browse the repository at this point in the history
Correct spelling "exeeds" to "exceeds" in iscsi/iscsi_target_nego.c
Correct spelling "diabled" to "disabled" in target_core_configfs.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
  • Loading branch information
Masanari Iida authored and Nicholas Bellinger committed Mar 10, 2012
1 parent d062833 commit 5e58b02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/target/iscsi/iscsi_target_nego.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ int extract_param(
return -1;

if (len > max_length) {
pr_err("Length of input: %d exeeds max_length:"
pr_err("Length of input: %d exceeds max_length:"
" %d\n", len, max_length);
return -1;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/target/target_core_configfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -2308,7 +2308,7 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_state(

if (!(tg_pt_gp->tg_pt_gp_alua_access_type & TPGS_IMPLICT_ALUA)) {
pr_err("Unable to process implict configfs ALUA"
" transition while TPGS_IMPLICT_ALUA is diabled\n");
" transition while TPGS_IMPLICT_ALUA is disabled\n");
return -EINVAL;
}

Expand Down

0 comments on commit 5e58b02

Please sign in to comment.