aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2007-10-23 08:45:23 +1000
committerPaul Mackerras <paulus@samba.org>2007-10-23 08:45:23 +1000
commit3cfa8f6c542467bd046aedb9d2e394b3d0e8467f (patch)
treefe8e6c5e4ad1bfb51bc1896b6dd8f616f266eb76 /drivers
parentNFS: Fix a typo in nfs_call_unlink() (diff)
parent[POWERPC] Enable restart support for lite5200 board (diff)
downloadlinux-dev-3cfa8f6c542467bd046aedb9d2e394b3d0e8467f.tar.xz
linux-dev-3cfa8f6c542467bd046aedb9d2e394b3d0e8467f.zip
Merge branch 'for-2.6.24' of git://git.secretlab.ca/git/linux-2.6-mpc52xx
Diffstat (limited to 'drivers')
-rw-r--r--drivers/watchdog/mpc5200_wdt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/watchdog/mpc5200_wdt.c b/drivers/watchdog/mpc5200_wdt.c
index 9cfb97576623..11f6a111e75b 100644
--- a/drivers/watchdog/mpc5200_wdt.c
+++ b/drivers/watchdog/mpc5200_wdt.c
@@ -176,6 +176,8 @@ static int mpc5200_wdt_probe(struct of_device *op, const struct of_device_id *ma
has_wdt = of_get_property(op->node, "has-wdt", NULL);
if (!has_wdt)
+ has_wdt = of_get_property(op->node, "fsl,has-wdt", NULL);
+ if (!has_wdt)
return -ENODEV;
wdt = kzalloc(sizeof(*wdt), GFP_KERNEL);
@@ -254,6 +256,7 @@ static int mpc5200_wdt_shutdown(struct of_device *op)
static struct of_device_id mpc5200_wdt_match[] = {
{ .compatible = "mpc5200-gpt", },
+ { .compatible = "fsl,mpc5200-gpt", },
{},
};
static struct of_platform_driver mpc5200_wdt_driver = {