Commit 2005ce35 authored by Anatolij Gustschin's avatar Anatolij Gustschin Committed by Grant Likely

of/pcmcia: m8xx_pcmcia.c: Fix build failures

Fixes build errors caused by the:
- OF device_node pointer being moved into struct device
- typo in match_table field in the struct device_driver
  (which shoud be of_match_table)
Signed-off-by: default avatarAnatolij Gustschin <agust@denx.de>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 295bdd9c
...@@ -1157,7 +1157,7 @@ static int __init m8xx_probe(struct of_device *ofdev, ...@@ -1157,7 +1157,7 @@ static int __init m8xx_probe(struct of_device *ofdev,
unsigned int i, m, hwirq; unsigned int i, m, hwirq;
pcmconf8xx_t *pcmcia; pcmconf8xx_t *pcmcia;
int status; int status;
struct device_node *np = ofdev->node; struct device_node *np = ofdev->dev.of_node;
pcmcia_info("%s\n", version); pcmcia_info("%s\n", version);
...@@ -1301,7 +1301,7 @@ static struct of_platform_driver m8xx_pcmcia_driver = { ...@@ -1301,7 +1301,7 @@ static struct of_platform_driver m8xx_pcmcia_driver = {
.driver = { .driver = {
.name = driver_name, .name = driver_name,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.match_table = m8xx_pcmcia_match, .of_match_table = m8xx_pcmcia_match,
}, },
.probe = m8xx_probe, .probe = m8xx_probe,
.remove = m8xx_remove, .remove = m8xx_remove,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment