Commit 8674204a authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by David S. Miller

[NET] 9p: kill dead static inline buf_put_string

Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@helsinki.fi>
Acked-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e1770d97
......@@ -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;
......
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