From: Benjamin Tissoires Date: Tue, 4 Dec 2012 15:27:45 +0000 (+0100) Subject: HID: i2c-hid: fix checkpatch.pl warning X-Git-Tag: v3.8-rc1~130^2^3~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee8e8806348732e328d119418a9788aabeceed0a;p=platform%2Fkernel%2Flinux-exynos.git HID: i2c-hid: fix checkpatch.pl warning We should not initialize to 0 static declarations. Signed-off-by: Benjamin Tissoires Reviewed-by: Jean Delvare Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c index 0fbb229..3c8fe46 100644 --- a/drivers/hid/i2c-hid/i2c-hid.c +++ b/drivers/hid/i2c-hid/i2c-hid.c @@ -46,7 +46,7 @@ #define I2C_HID_PWR_SLEEP 0x01 /* debug option */ -static bool debug = false; +static bool debug; module_param(debug, bool, 0444); MODULE_PARM_DESC(debug, "print a lot of debug information");