diff options
author | Spencer O Krum <krum.spencer@gmail.com> | 2012-02-24 00:50:39 +0100 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-02-25 23:37:50 +0100 |
commit | 355b769e03e2a35f9dae32d95670df2fe3a6b4d2 (patch) | |
tree | 2679bb7f8dbd74c72f03b9f32ef5ae5c947bbfe0 | |
parent | target/pscsi: fix PHV_VIRUTAL_HOST_ID typo (diff) | |
download | linux-355b769e03e2a35f9dae32d95670df2fe3a6b4d2.tar.xz linux-355b769e03e2a35f9dae32d95670df2fe3a6b4d2.zip |
Documentation/target: Minor spelling typo
Signed-off-by: Spencer Krum <nibz@cat.pdx.edu>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
-rwxr-xr-x | Documentation/target/tcm_mod_builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/target/tcm_mod_builder.py b/Documentation/target/tcm_mod_builder.py index 6e21b8b52638..a78879b01f09 100755 --- a/Documentation/target/tcm_mod_builder.py +++ b/Documentation/target/tcm_mod_builder.py @@ -775,7 +775,7 @@ def tcm_mod_dump_fabric_ops(proto_ident, fabric_mod_dir_var, fabric_mod_name): buf += " struct " + fabric_mod_name + "_nacl *nacl;\n\n" buf += " nacl = kzalloc(sizeof(struct " + fabric_mod_name + "_nacl), GFP_KERNEL);\n" buf += " if (!nacl) {\n" - buf += " printk(KERN_ERR \"Unable to alocate struct " + fabric_mod_name + "_nacl\\n\");\n" + buf += " printk(KERN_ERR \"Unable to allocate struct " + fabric_mod_name + "_nacl\\n\");\n" buf += " return NULL;\n" buf += " }\n\n" buf += " return &nacl->se_node_acl;\n" |