diff options
author | Christoph Hellwig <hch@lst.de> | 2015-04-15 03:04:41 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2015-04-16 01:47:28 -0400 |
commit | 65204c84d7666a78e965da0dd8696bdb007606dd (patch) | |
tree | ee422ee592fc2b1316e17c5bf3de755a9614e63b /Documentation/target/tcm_mod_builder.py | |
parent | 64d240b721b21e266ffde645ec965c3b6d1c551f (diff) |
target: fix tcm_mod_builder.py
Fix a misplaced comma I introduced.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'Documentation/target/tcm_mod_builder.py')
-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 27afc033761f..2ba71cea0172 100755 --- a/Documentation/target/tcm_mod_builder.py +++ b/Documentation/target/tcm_mod_builder.py | |||
@@ -370,7 +370,7 @@ def tcm_mod_build_configfs(proto_ident, fabric_mod_dir_var, fabric_mod_name): | |||
370 | buf += "};\n\n" | 370 | buf += "};\n\n" |
371 | 371 | ||
372 | buf += "static const struct target_core_fabric_ops " + fabric_mod_name + "_ops = {\n" | 372 | buf += "static const struct target_core_fabric_ops " + fabric_mod_name + "_ops = {\n" |
373 | buf += " .module = THIS_MODULE\n", | 373 | buf += " .module = THIS_MODULE,\n" |
374 | buf += " .name = " + fabric_mod_name + ",\n" | 374 | buf += " .name = " + fabric_mod_name + ",\n" |
375 | buf += " .get_fabric_proto_ident = " + fabric_mod_name + "_get_fabric_proto_ident,\n" | 375 | buf += " .get_fabric_proto_ident = " + fabric_mod_name + "_get_fabric_proto_ident,\n" |
376 | buf += " .get_fabric_name = " + fabric_mod_name + "_get_fabric_name,\n" | 376 | buf += " .get_fabric_name = " + fabric_mod_name + "_get_fabric_name,\n" |