Commit e5f84f82 authored by Stefan Richter's avatar Stefan Richter

firewire: a header cleanup

fw_node() is not used (and not useful) outside fw-topology.c.
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent a64408b9
...@@ -152,6 +152,10 @@ static void update_hop_count(struct fw_node *node) ...@@ -152,6 +152,10 @@ static void update_hop_count(struct fw_node *node)
node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2); node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2);
} }
static inline struct fw_node *fw_node(struct list_head *l)
{
return list_entry(l, struct fw_node, link);
}
/** /**
* build_tree - Build the tree representation of the topology * build_tree - Build the tree representation of the topology
......
...@@ -50,12 +50,6 @@ struct fw_node { ...@@ -50,12 +50,6 @@ struct fw_node {
struct fw_node *ports[0]; struct fw_node *ports[0];
}; };
static inline struct fw_node *
fw_node(struct list_head *l)
{
return list_entry(l, struct fw_node, link);
}
static inline struct fw_node * static inline struct fw_node *
fw_node_get(struct fw_node *node) fw_node_get(struct fw_node *node)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment