From: Jiri Slaby <jirislaby@gmail.com>
Date: Sun, 9 Mar 2008 15:29:24 +0000 (+0100)
Subject: HID: make function from dbg_hid
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1b184cf37f5cf098f07725b483a2055e95725476;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

HID: make function from dbg_hid

To check paramters even if debug is disabled, convert dbg_hid
to inline function with __attribute__(format) checking.

Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
---

diff --git a/include/linux/hid.h b/include/linux/hid.h
index 5bf6282f1635..69ba58434dcb 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -569,7 +569,11 @@ static inline int hid_ff_init(struct hid_device *hid) { return -1; }
 #define dbg_hid_line(format, arg...) if (hid_debug) \
 				printk(format, ## arg)
 #else
-#define dbg_hid(format, arg...) do {} while (0)
+static inline int __attribute__((format(printf, 1, 2)))
+dbg_hid(const char *fmt, ...)
+{
+	return 0;
+}
 #define dbg_hid_line dbg_hid
 #endif