diff options
author | Joe Perches <joe@perches.com> | 2014-04-08 19:04:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-08 19:48:52 -0400 |
commit | e45ca8baa33e0c0228e84126c3a20df3abfd1771 (patch) | |
tree | 857a421ea03f957b144281af36291fbe3e88a0df /fs/ncpfs/sock.c | |
parent | d3b73ca1be3236fc33f896af7e2ba637a677d5c9 (diff) |
ncpfs: convert PPRINTK to ncp_vdbg
Use a more current logging style.
Convert the paranoia debug statement to vdbg.
Remove the embedded function names as dynamic_debug can do that.
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Petr Vandrovec <petr@vandrovec.name>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ncpfs/sock.c')
-rw-r--r-- | fs/ncpfs/sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ncpfs/sock.c b/fs/ncpfs/sock.c index 3dd731bfd340..04a69a4d8e96 100644 --- a/fs/ncpfs/sock.c +++ b/fs/ncpfs/sock.c | |||
@@ -823,7 +823,7 @@ int ncp_request2(struct ncp_server *server, int function, | |||
823 | result = reply->completion_code; | 823 | result = reply->completion_code; |
824 | 824 | ||
825 | if (result != 0) | 825 | if (result != 0) |
826 | PPRINTK("ncp_request: completion code=%x\n", result); | 826 | ncp_vdbg("completion code=%x\n", result); |
827 | out: | 827 | out: |
828 | return result; | 828 | return result; |
829 | } | 829 | } |