]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
target: fix tcm_mod_builder.py
authorChristoph Hellwig <hch@lst.de>
Wed, 15 Apr 2015 07:04:41 +0000 (09:04 +0200)
committerNicholas Bellinger <nab@linux-iscsi.org>
Thu, 16 Apr 2015 05:47:28 +0000 (22:47 -0700)
Fix a misplaced comma I introduced.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Documentation/target/tcm_mod_builder.py

index 27afc033761f02d650f160296f9eb497ec6390f9..2ba71cea01723cf3216ef4e95708789b6e0cc9f2 100755 (executable)
@@ -370,7 +370,7 @@ def tcm_mod_build_configfs(proto_ident, fabric_mod_dir_var, fabric_mod_name):
        buf += "};\n\n"
 
        buf += "static const struct target_core_fabric_ops " + fabric_mod_name + "_ops = {\n"
-       buf += "        .module                         = THIS_MODULE\n",
+       buf += "        .module                         = THIS_MODULE,\n"
        buf += "        .name                           = " + fabric_mod_name + ",\n"
        buf += "        .get_fabric_proto_ident         = " + fabric_mod_name + "_get_fabric_proto_ident,\n"
        buf += "        .get_fabric_name                = " + fabric_mod_name + "_get_fabric_name,\n"