diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-08 07:35:30 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-08 07:35:30 -0800 | 
| commit | d4bab1b091be4a91a7363118c9ede3cc9a7fefd4 (patch) | |
| tree | b473b1bb53ef0fec027023ea6f419ea9894465dd /drivers/watchdog/gef_wdt.c | |
| parent | 56b78921c32ae825c596c158e74ab48c0e8e280d (diff) | |
| parent | 2786095a58fd55931fa0298ff6e3914331edaaf2 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog
* git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog:
  [WATCHDOG] i6300esb.c: change platform_driver to pci_driver
  [WATCHDOG] i6300esb: fix unlock register with
  [WATCHDOG] drivers/watchdog/wdt.c:wdt_ioctl(): make `ident' non-static
  [WATCHDOG] change reboot_notifier to platform-shutdown method.
  [WATCHDOG] watchdog_info constify
  [WATCHDOG] gef_wdt: Author corrections following split of GE Fanuc joint venture
  [WATCHDOG] iTCO_wdt: clean up probe(), modify err msg
  [WATCHDOG] ep93xx: watchdog timer driver for TS-72xx SBCs cleanup
  [WATCHDOG] support for max63xx watchdog timer chips
  [WATCHDOG] ep93xx: added platform side support for TS-72xx WDT driver
  [WATCHDOG] ep93xx: implemented watchdog timer driver for TS-72xx SBCs
Diffstat (limited to 'drivers/watchdog/gef_wdt.c')
| -rw-r--r-- | drivers/watchdog/gef_wdt.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/drivers/watchdog/gef_wdt.c b/drivers/watchdog/gef_wdt.c index 734d9806a872..abdbad034a6c 100644 --- a/drivers/watchdog/gef_wdt.c +++ b/drivers/watchdog/gef_wdt.c @@ -1,9 +1,9 @@  /* - * GE Fanuc watchdog userspace interface + * GE watchdog userspace interface   * - * Author:  Martyn Welch <martyn.welch@gefanuc.com> + * Author:  Martyn Welch <martyn.welch@ge.com>   * - * Copyright 2008 GE Fanuc Intelligent Platforms Embedded Systems, Inc. + * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.   *   * This program is free software; you can redistribute  it and/or modify it   * under  the terms of  the GNU General  Public License as published by the @@ -161,11 +161,11 @@ static long gef_wdt_ioctl(struct file *file, unsigned int cmd,  	int timeout;  	int options;  	void __user *argp = (void __user *)arg; -	static struct watchdog_info info = { +	static const struct watchdog_info info = {  		.options =	WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE |  				WDIOF_KEEPALIVEPING,  		.firmware_version = 0, -		.identity = "GE Fanuc watchdog", +		.identity = "GE watchdog",  	};  	switch (cmd) { @@ -311,7 +311,7 @@ static struct of_platform_driver gef_wdt_driver = {  static int __init gef_wdt_init(void)  { -	printk(KERN_INFO "GE Fanuc watchdog driver\n"); +	printk(KERN_INFO "GE watchdog driver\n");  	return of_register_platform_driver(&gef_wdt_driver);  } @@ -323,8 +323,8 @@ static void __exit gef_wdt_exit(void)  module_init(gef_wdt_init);  module_exit(gef_wdt_exit); -MODULE_AUTHOR("Martyn Welch <martyn.welch@gefanuc.com>"); -MODULE_DESCRIPTION("GE Fanuc watchdog driver"); +MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>"); +MODULE_DESCRIPTION("GE watchdog driver");  MODULE_LICENSE("GPL");  MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);  MODULE_ALIAS("platform: gef_wdt"); | 
