diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2005-12-16 22:35:28 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-16 14:43:05 -0800 |
commit | a78719c387cc25ed97304a235a20c24f0f89399b (patch) | |
tree | f2e394bf22e90c0bad6fc4a05838b98260352042 /drivers/char | |
parent | 42245e65f356ed54fdf7a1f9a0095e0bc40f73a3 (diff) | |
download | op-kernel-dev-a78719c387cc25ed97304a235a20c24f0f89399b.zip op-kernel-dev-a78719c387cc25ed97304a235a20c24f0f89399b.tar.gz |
[PATCH] ppc: booke_wdt compile fix
booke_wdt.c had been missed in cpu_specs[] removal sweep
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/watchdog/booke_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/watchdog/booke_wdt.c b/drivers/char/watchdog/booke_wdt.c index c800cce..b664060 100644 --- a/drivers/char/watchdog/booke_wdt.c +++ b/drivers/char/watchdog/booke_wdt.c @@ -173,7 +173,7 @@ static int __init booke_wdt_init(void) int ret = 0; printk (KERN_INFO "PowerPC Book-E Watchdog Timer Loaded\n"); - ident.firmware_version = cpu_specs[0].pvr_value; + ident.firmware_version = cur_cpu_spec->pvr_value; ret = misc_register(&booke_wdt_miscdev); if (ret) { |