Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: evdev - fix printf() format for sizeof
Input: remove version.h from drivers that don't need it
Input: cobalt_btns - add missing MODULE_LICENSE

+5 -9
+2 -2
drivers/input/evdev.c
··· 677 677 len = OLD_KEY_MAX; 678 678 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000)) 679 679 printk(KERN_WARNING 680 - "evdev.c(EVIOCGBIT): Suspicious buffer size %d, " 681 - "limiting output to %d bytes. See " 680 + "evdev.c(EVIOCGBIT): Suspicious buffer size %u, " 681 + "limiting output to %zu bytes. See " 682 682 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n", 683 683 OLD_KEY_MAX, 684 684 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
-1
drivers/input/keyboard/gpio_keys.c
··· 9 9 */ 10 10 11 11 #include <linux/module.h> 12 - #include <linux/version.h> 13 12 14 13 #include <linux/init.h> 15 14 #include <linux/fs.h>
+3
drivers/input/misc/cobalt_btns.c
··· 148 148 return 0; 149 149 } 150 150 151 + MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); 152 + MODULE_DESCRIPTION("Cobalt button interface driver"); 153 + MODULE_LICENSE("GPL"); 151 154 /* work with hotplug and coldplug */ 152 155 MODULE_ALIAS("platform:Cobalt buttons"); 153 156
-1
drivers/input/mouse/gpio_mouse.c
··· 9 9 */ 10 10 11 11 #include <linux/init.h> 12 - #include <linux/version.h> 13 12 #include <linux/module.h> 14 13 #include <linux/platform_device.h> 15 14 #include <linux/input-polldev.h>
-1
drivers/input/tablet/gtco.c
··· 64 64 #include <asm/byteorder.h> 65 65 66 66 67 - #include <linux/version.h> 68 67 #include <linux/usb/input.h> 69 68 70 69 /* Version with a Major number of 2 is for kernel inclusion only. */
-1
drivers/input/touchscreen/wm9705.c
··· 17 17 18 18 #include <linux/module.h> 19 19 #include <linux/moduleparam.h> 20 - #include <linux/version.h> 21 20 #include <linux/kernel.h> 22 21 #include <linux/input.h> 23 22 #include <linux/delay.h>
-1
drivers/input/touchscreen/wm9712.c
··· 17 17 18 18 #include <linux/module.h> 19 19 #include <linux/moduleparam.h> 20 - #include <linux/version.h> 21 20 #include <linux/kernel.h> 22 21 #include <linux/input.h> 23 22 #include <linux/delay.h>
-1
drivers/input/touchscreen/wm9713.c
··· 17 17 18 18 #include <linux/module.h> 19 19 #include <linux/moduleparam.h> 20 - #include <linux/version.h> 21 20 #include <linux/kernel.h> 22 21 #include <linux/input.h> 23 22 #include <linux/delay.h>
-1
drivers/input/touchscreen/wm97xx-core.c
··· 37 37 38 38 #include <linux/module.h> 39 39 #include <linux/moduleparam.h> 40 - #include <linux/version.h> 41 40 #include <linux/kernel.h> 42 41 #include <linux/init.h> 43 42 #include <linux/delay.h>