firewire: comma after last enum item or initializer

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c
index 559b934..f1b0e75 100644
--- a/drivers/firewire/fw-device.c
+++ b/drivers/firewire/fw-device.c
@@ -154,7 +154,7 @@
 struct bus_type fw_bus_type = {
 	.name = "fw",
 	.match = fw_unit_match,
-	.uevent = fw_unit_uevent
+	.uevent = fw_unit_uevent,
 };
 EXPORT_SYMBOL(fw_bus_type);
 
@@ -209,8 +209,8 @@
 }
 
 static struct device_attribute modalias_attribute = {
-	.attr = {.name = "modalias",.mode = S_IRUGO},
-	.show = show_modalias_attribute
+	.attr = { .name = "modalias", .mode = S_IRUGO, },
+	.show = show_modalias_attribute,
 };
 
 static ssize_t
@@ -225,7 +225,7 @@
 }
 
 static struct device_attribute config_rom_attribute = {
-	.attr = {.name = "config_rom",.mode = S_IRUGO},
+	.attr = {.name = "config_rom", .mode = S_IRUGO,},
 	.show = show_config_rom_attribute,
 };