linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] log: Remove vinfo function
@ 2010-06-05  4:41 Gustavo F. Padovan
  2010-06-05  4:41 ` [PATCH 2/3] Remove ifndef barrier from log.h and btio.h Gustavo F. Padovan
  0 siblings, 1 reply; 7+ messages in thread
From: Gustavo F. Padovan @ 2010-06-05  4:41 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: gustavo

It was used only once.
---
 src/log.c |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/src/log.c b/src/log.c
index 29e2d7d..cb02aad 100644
--- a/src/log.c
+++ b/src/log.c
@@ -33,18 +33,13 @@
 
 #include "log.h"
 
-static inline void vinfo(const char *format, va_list ap)
-{
-	vsyslog(LOG_INFO, format, ap);
-}
-
 void info(const char *format, ...)
 {
 	va_list ap;
 
 	va_start(ap, format);
 
-	vinfo(format, ap);
+	vsyslog(LOG_INFO, format, ap);
 
 	va_end(ap);
 }
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-06-08  7:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-05  4:41 [PATCH 1/3] log: Remove vinfo function Gustavo F. Padovan
2010-06-05  4:41 ` [PATCH 2/3] Remove ifndef barrier from log.h and btio.h Gustavo F. Padovan
2010-06-05  4:41   ` [PATCH 3/3] Fix regression with debug via SIGUSR2 Gustavo F. Padovan
2010-06-05  4:49     ` Gustavo F. Padovan
2010-06-05  4:51     ` [PATCH] " Gustavo F. Padovan
2010-06-08  6:19   ` [PATCH 2/3] Remove ifndef barrier from log.h and btio.h Johan Hedberg
2010-06-08  7:14     ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).