diff options
author | Roland Dreier | 2010-04-21 08:59:17 +0000 |
---|---|---|
committer | David S. Miller | 2010-04-21 23:00:43 -0700 |
commit | de498c89254b5b89f676e9c9292396d5ebf52bf2 (patch) | |
tree | 2976ebf664011f5260ef6fe91f527afe4b6c3495 /drivers/net/cxgb4/sge.c | |
parent | 62718b328f972f1559feb96dfccc15fc9f4c9a2c (diff) |
cxgb4: Make unnecessarily global functions static
Also put t4_write_indirect() inside "#if 0" to avoid a "defined but not
used" compile warning.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cxgb4/sge.c')
-rw-r--r-- | drivers/net/cxgb4/sge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/cxgb4/sge.c b/drivers/net/cxgb4/sge.c index 70bf2b2e6001..65d91c4ec9f5 100644 --- a/drivers/net/cxgb4/sge.c +++ b/drivers/net/cxgb4/sge.c @@ -1471,7 +1471,7 @@ EXPORT_SYMBOL(cxgb4_pktgl_to_skb); * Releases the pages of a packet gather list. We do not own the last * page on the list and do not free it. */ -void t4_pktgl_free(const struct pkt_gl *gl) +static void t4_pktgl_free(const struct pkt_gl *gl) { int n; const skb_frag_t *p; |