mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
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>
This commit is contained in:
parent
8b9686ff4d
commit
d856b41846
@ -195,7 +195,7 @@ static int __devinit mpc8xxx_wdt_probe(struct platform_device *ofdev)
|
|||||||
|
|
||||||
if (!ofdev->dev.of_match)
|
if (!ofdev->dev.of_match)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
wdt_type = match->data;
|
wdt_type = ofdev->dev.of_match->data;
|
||||||
|
|
||||||
if (!freq || freq == -1)
|
if (!freq || freq == -1)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user