From: Ilpo Järvinen Date: Tue, 29 Jan 2008 04:28:26 +0000 (-0800) Subject: [NET] 9p: kill dead static inline buf_put_string X-Git-Tag: v2.6.25-rc1~1089^2~131 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=8674204a4977b5676d229f772c23f0091de9c23c;p=linux-2.6-omap-h63xx.git [NET] 9p: kill dead static inline buf_put_string Signed-off-by: Ilpo Järvinen Acked-by: Eric Van Hensbergen Signed-off-by: David S. Miller --- diff --git a/net/9p/conv.c b/net/9p/conv.c index aa2aa9884f9..3fe35d532c8 100644 --- a/net/9p/conv.c +++ b/net/9p/conv.c @@ -128,11 +128,6 @@ static char *buf_put_stringn(struct cbuf *buf, const char *s, u16 slen) return ret; } -static inline void buf_put_string(struct cbuf *buf, const char *s) -{ - buf_put_stringn(buf, s, strlen(s)); -} - static u8 buf_get_int8(struct cbuf *buf) { u8 ret = 0;