diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-01-21 19:44:09 (GMT) |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 21:02:40 (GMT) |
commit | 5e20c282184fd5794661b6688883231ff5348abc (patch) | |
tree | d9ea9b86d5e2bcc4ef4d8def27102a76ac4b05ef /drivers/firewire/fw-topology.h | |
parent | 95688e97cdf7453cde22eaa73cc2ab6b113c1853 (diff) | |
download | linux-5e20c282184fd5794661b6688883231ff5348abc.tar.xz |
firewire: whitespace adjustments
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-topology.h')
-rw-r--r-- | drivers/firewire/fw-topology.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/firewire/fw-topology.h b/drivers/firewire/fw-topology.h index a78c951..4311d9f 100644 --- a/drivers/firewire/fw-topology.h +++ b/drivers/firewire/fw-topology.h @@ -37,7 +37,7 @@ struct fw_port { struct fw_node { u16 node_id; - u8 color; + u8 color; u8 port_count; unsigned link_on : 1; unsigned initiated_reset : 1; @@ -48,19 +48,19 @@ struct fw_node { atomic_t ref_count; - /* For serializing node topology into a list. */ + /* For serializing node topology into a list. */ struct list_head link; /* Upper layer specific data. */ void *data; - struct fw_port ports[0]; + struct fw_port ports[0]; }; static inline struct fw_node * fw_node(struct list_head *l) { - return list_entry (l, struct fw_node, link); + return list_entry (l, struct fw_node, link); } static inline struct fw_node * |