watchdog: mpc8xxx_wdt: fix build
Since 1c48a5c93d
(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>
This commit is contained in:
Родитель
8b9686ff4d
Коммит
d856b41846
|
@ -195,7 +195,7 @@ static int __devinit mpc8xxx_wdt_probe(struct platform_device *ofdev)
|
|||
|
||||
if (!ofdev->dev.of_match)
|
||||
return -EINVAL;
|
||||
wdt_type = match->data;
|
||||
wdt_type = ofdev->dev.of_match->data;
|
||||
|
||||
if (!freq || freq == -1)
|
||||
return -EINVAL;
|
||||
|
|
Загрузка…
Ссылка в новой задаче