diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-03-30 09:48:22 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2011-04-07 16:20:24 -0400 |
commit | d856b418464024dba4c7e901bab74dfb9a030d2e (patch) | |
tree | e85cb723d3531b88fb0c032c06afbae926ad0f9b /drivers/watchdog | |
parent | 8b9686ff4ddfdf45662024edd567920e6db87beb (diff) |
watchdog: mpc8xxx_wdt: fix build
Since 1c48a5c93da6313 (dt: Eliminate of_platform_{,un}register_driver)
mpc8xxx_wdt no longer builds as it tries to refer to a 'match' variable
rather than ofdev->dev.of_match that it checks just before.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/mpc8xxx_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/mpc8xxx_wdt.c b/drivers/watchdog/mpc8xxx_wdt.c index 6709d723e017..528bceb220fd 100644 --- a/drivers/watchdog/mpc8xxx_wdt.c +++ b/drivers/watchdog/mpc8xxx_wdt.c | |||
@@ -195,7 +195,7 @@ static int __devinit mpc8xxx_wdt_probe(struct platform_device *ofdev) | |||
195 | 195 | ||
196 | if (!ofdev->dev.of_match) | 196 | if (!ofdev->dev.of_match) |
197 | return -EINVAL; | 197 | return -EINVAL; |
198 | wdt_type = match->data; | 198 | wdt_type = ofdev->dev.of_match->data; |
199 | 199 | ||
200 | if (!freq || freq == -1) | 200 | if (!freq || freq == -1) |
201 | return -EINVAL; | 201 | return -EINVAL; |