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

Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

* 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (jz4740) Staticise jz4740_hwmon_driver
hwmon: (jz4740) fix signedness bug

+2 -2
+2 -2
drivers/hwmon/jz4740-hwmon.c
··· 59 59 { 60 60 struct jz4740_hwmon *hwmon = dev_get_drvdata(dev); 61 61 struct completion *completion = &hwmon->read_completion; 62 - unsigned long t; 62 + long t; 63 63 unsigned long val; 64 64 int ret; 65 65 ··· 203 203 return 0; 204 204 } 205 205 206 - struct platform_driver jz4740_hwmon_driver = { 206 + static struct platform_driver jz4740_hwmon_driver = { 207 207 .probe = jz4740_hwmon_probe, 208 208 .remove = __devexit_p(jz4740_hwmon_remove), 209 209 .driver = {