diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-10-06 20:10:11 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-10-16 18:00:09 -0400 |
commit | e5f84f82bdc5f8a5ce3d33aa6a2cc727fc08bda6 (patch) | |
tree | f3b165f1971dd2d6ca3c3819656dc55d0dd7256d /drivers/firewire | |
parent | a64408b96b5f67c2778958a230b5cfa3408a4a81 (diff) |
firewire: a header cleanup
fw_node() is not used (and not useful) outside fw-topology.c.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/fw-topology.c | 4 | ||||
-rw-r--r-- | drivers/firewire/fw-topology.h | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/drivers/firewire/fw-topology.c b/drivers/firewire/fw-topology.c index 39e5cd12aa52..45e6f9bfe99c 100644 --- a/drivers/firewire/fw-topology.c +++ b/drivers/firewire/fw-topology.c | |||
@@ -152,6 +152,10 @@ static void update_hop_count(struct fw_node *node) | |||
152 | node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2); | 152 | node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2); |
153 | } | 153 | } |
154 | 154 | ||
155 | static inline struct fw_node *fw_node(struct list_head *l) | ||
156 | { | ||
157 | return list_entry(l, struct fw_node, link); | ||
158 | } | ||
155 | 159 | ||
156 | /** | 160 | /** |
157 | * build_tree - Build the tree representation of the topology | 161 | * build_tree - Build the tree representation of the topology |
diff --git a/drivers/firewire/fw-topology.h b/drivers/firewire/fw-topology.h index 1b56b4ac7fb2..cedc1ec906e9 100644 --- a/drivers/firewire/fw-topology.h +++ b/drivers/firewire/fw-topology.h | |||
@@ -51,12 +51,6 @@ struct fw_node { | |||
51 | }; | 51 | }; |
52 | 52 | ||
53 | static inline struct fw_node * | 53 | static inline struct fw_node * |
54 | fw_node(struct list_head *l) | ||
55 | { | ||
56 | return list_entry(l, struct fw_node, link); | ||
57 | } | ||
58 | |||
59 | static inline struct fw_node * | ||
60 | fw_node_get(struct fw_node *node) | 54 | fw_node_get(struct fw_node *node) |
61 | { | 55 | { |
62 | atomic_inc(&node->ref_count); | 56 | atomic_inc(&node->ref_count); |