aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>2015-01-13 19:45:19 +0100
committerDavid S. Miller <davem@davemloft.net>2015-01-13 17:27:18 -0500
commit927a97ccd25b67a80bfe8476fc08866fd4be2fc9 (patch)
tree0e6d2cbb19e20bd2915d4750982be3d98be3f3d7
parenttipc: correctly handle releasing a not fully initialized sock (diff)
downloadlinux-dev-927a97ccd25b67a80bfe8476fc08866fd4be2fc9.tar.xz
linux-dev-927a97ccd25b67a80bfe8476fc08866fd4be2fc9.zip
atm: lanai: Remove unused function
Remove the function aal5_spacefor() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/atm/lanai.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c
index 93eaf8d94492..d2e9ea8d504e 100644
--- a/drivers/atm/lanai.c
+++ b/drivers/atm/lanai.c
@@ -681,15 +681,6 @@ static inline int aal5_size(int size)
return cells * 48;
}
-/* How many bytes can we send if we have "space" space, assuming we have
- * to send full cells
- */
-static inline int aal5_spacefor(int space)
-{
- int cells = space / 48;
- return cells * 48;
-}
-
/* -------------------- FREE AN ATM SKB: */
static inline void lanai_free_skb(struct atm_vcc *atmvcc, struct sk_buff *skb)