An error occurred fetching the project authors.
- 17 Nov, 2013 1 commit
-
-
Jean Delvare authored
I just can't find any value in MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR) and MODULE_ALIAS_MISCDEV(TEMP_MINOR) statements. Either the device is enumerated and the driver already has a module alias (e.g. PCI, USB etc.) that will get the right driver loaded automatically. Or the device is not enumerated and loading its driver will lead to more or less intrusive hardware poking. Such hardware poking should be limited to a bare minimum, so the user should really decide which drivers should be tried and in what order. Trying them all in arbitrary order can't do any good. On top of that, loading that many drivers at once bloats the kernel log. Also many drivers will stay loaded afterward, bloating the output of "lsmod" and wasting memory. Some modules (cs5535_mfgpt which gets loaded as a dependency) can't even be unloaded! If defining char-major-10-130 is needed then it should happen in user-space. Signed-off-by:
Jean Delvare <jdelvare@suse.de> Acked-by:
Guenter Roeck <linux@roeck-us.net> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be> Cc: Stephen Warren <swarren@wwwdotorg.org> Cc: Mike Frysinger <vapier.adi@gmail.com> Cc: Wan ZongShun <mcuos.com@gmail.com> Cc: Ben Dooks <ben-linux@fluff.org> Cc: Kukjin Kim <kgene.kim@samsung.com> Cc: Zwane Mwaikambo <zwane@arm.linux.org.uk> Cc: Jim Cromie <jim.cromie@gmail.com>
-
- 28 Mar, 2012 1 commit
-
-
David Howells authored
Remove all #inclusions of asm/system.h preparatory to splitting and killing it. Performed with the following command: perl -p -i -e 's!^#\s*include\s*<asm/system[.]h>.*\n!!' `grep -Irl '^#\s*include\s*<asm/system[.]h>' *` Signed-off-by:
David Howells <dhowells@redhat.com>
-
- 27 Mar, 2012 2 commits
-
-
Wim Van Sebroeck authored
nowayout is actually a boolean value. So make it bool for all watchdog device drivers. Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
Joe Perches authored
Use the current logging styles. Make sure all output has a prefix. Add missing newlines. Remove now unnecessary PFX, NAME, and miscellaneous other #defines. Coalesce formats. Signed-off-by:
Joe Perches <joe@perches.com> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 15 Mar, 2011 1 commit
-
-
Wim Van Sebroeck authored
cleanup spaces before tabs in drivers/watchdog/ Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 18 Jun, 2009 1 commit
-
-
Wim Van Sebroeck authored
Clean-up the watchdog drivers so that checkpatch.pl get's happy... Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 25 Mar, 2009 1 commit
-
-
Wim Van Sebroeck authored
Some more cleaning-up of the watchdog drivers. Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 28 Oct, 2008 1 commit
-
-
Alan Cox authored
Signed-off-by:
Alan Cox <alan@redhat.com> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 06 Aug, 2008 1 commit
-
-
Wim Van Sebroeck authored
Move the sbc8360.c watchdog stop code into a seperate function. Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 21 Jun, 2008 1 commit
-
-
Alan Cox authored
Review and switch to unlocked_ioctl Signed-off-by:
Alan Cox <alan@redhat.com> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 02 Nov, 2007 1 commit
-
-
Alexey Dobriyan authored
Some watchdog drivers initialize global spinlocks in module's init function which is tolerable, but some do it in PCI probe function. So, switch to static initialization to fix theoretical bugs and, more importantly, stop giving people bad examples. Signed-off-by:
Alexey Dobriyan <adobriyan@sw.ru> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org>
-
- 18 Oct, 2007 1 commit
-
-
Wim Van Sebroeck authored
move watchdog tree from drivers/char/watchdog to drivers/watchdog. Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 26 Mar, 2007 1 commit
-
-
Alexey Dobriyan authored
It seems that some watchdog drivers are doing following mistake: rv = misc_register(); if (rv < 0) return rv; rv = request_region(); if (rv < 0) { misc_deregister(); return rv; } But, right after misc_register() returns, misc device can be opened and ioctls interacting with hardware issued, and driver can do outb() to port it doesn't own yet, because request_region() is still pending. Here is my patch, compile-tested only. Signed-off-by:
Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 27 Jan, 2007 1 commit
-
-
Wim Van Sebroeck authored
change default=CONFIG_WATCHDOG_NOWAYOUT in the module parameter for nowayout by it's real value (0 or 1) by using: __MODULE_STRING(WATCHDOG_NOWAYOUT) Signed-off-by:
Wim Van Sebroeck <wim@iguana.be>
-
- 01 Sep, 2006 1 commit
-
-
Ian E. Morgan authored
The last argument of module_param is permissions, not default value. Acked-by:
Wim Van Sebroeck <wim@iguana.be> Signed-off-by:
Andrew Morton <akpm@osdl.org> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-
- 03 Jul, 2006 1 commit
-
-
Arjan van de Ven authored
Mark the static struct file_operations in drivers/char as const. Making them const prevents accidental bugs, and moves them to the .rodata section so that they no longer do any false sharing; in addition with the proper debug option they are then protected against corruption.. [akpm@osdl.org: build fix] Signed-off-by:
Arjan van de Ven <arjan@linux.intel.com> Signed-off-by:
Andrew Morton <akpm@osdl.org> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-
- 30 Jun, 2006 1 commit
-
-
Jörn Engel authored
Signed-off-by:
Jörn Engel <joern@wohnheim.fh-wedel.de> Signed-off-by:
Adrian Bunk <bunk@stusta.de>
-
- 12 Sep, 2005 1 commit
-
-
Wim Van Sebroeck authored
Attached patch removes #ifdef CONFIG_WATCHDOG_NOWAYOUT mess and replaces it with common define in linux/watchdog.h. Signed-Off-By:
Wim Van Sebroeck <wim@iguana.be>
-
- 11 Sep, 2005 1 commit
-
-
Ian E. Morgan authored
New SBC8360 watchdog driver patch From: Ian E. Morgan <imorgan@webcon.ca> Signed-off-by:
Wim Van Sebroeck <wim@iguana.be> Signed-off-by:
Andrew Morton <akpm@osdl.org>
-