diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-01-21 14:45:32 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 16:02:41 -0500 |
commit | 5af4e5eab30d481f76b89a2167c873dfad960acb (patch) | |
tree | eb958f6afd26bb382de66156feb8f64fe8646f73 /drivers/firewire/fw-device.c | |
parent | 5e20c282184fd5794661b6688883231ff5348abc (diff) |
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>
Diffstat (limited to 'drivers/firewire/fw-device.c')
-rw-r--r-- | drivers/firewire/fw-device.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index 559b9340e8fd..f1b0e75fd91e 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c | |||
@@ -154,7 +154,7 @@ fw_unit_uevent(struct device *dev, char **envp, int num_envp, | |||
154 | struct bus_type fw_bus_type = { | 154 | struct bus_type fw_bus_type = { |
155 | .name = "fw", | 155 | .name = "fw", |
156 | .match = fw_unit_match, | 156 | .match = fw_unit_match, |
157 | .uevent = fw_unit_uevent | 157 | .uevent = fw_unit_uevent, |
158 | }; | 158 | }; |
159 | EXPORT_SYMBOL(fw_bus_type); | 159 | EXPORT_SYMBOL(fw_bus_type); |
160 | 160 | ||
@@ -209,8 +209,8 @@ show_modalias_attribute(struct device *dev, | |||
209 | } | 209 | } |
210 | 210 | ||
211 | static struct device_attribute modalias_attribute = { | 211 | static struct device_attribute modalias_attribute = { |
212 | .attr = {.name = "modalias",.mode = S_IRUGO}, | 212 | .attr = { .name = "modalias", .mode = S_IRUGO, }, |
213 | .show = show_modalias_attribute | 213 | .show = show_modalias_attribute, |
214 | }; | 214 | }; |
215 | 215 | ||
216 | static ssize_t | 216 | static ssize_t |
@@ -225,7 +225,7 @@ show_config_rom_attribute(struct device *dev, | |||
225 | } | 225 | } |
226 | 226 | ||
227 | static struct device_attribute config_rom_attribute = { | 227 | static struct device_attribute config_rom_attribute = { |
228 | .attr = {.name = "config_rom",.mode = S_IRUGO}, | 228 | .attr = {.name = "config_rom", .mode = S_IRUGO,}, |
229 | .show = show_config_rom_attribute, | 229 | .show = show_config_rom_attribute, |
230 | }; | 230 | }; |
231 | 231 | ||