diff options
Diffstat (limited to 'arch/sparc/kernel/auxio_64.c')
| -rw-r--r-- | arch/sparc/kernel/auxio_64.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/sparc/kernel/auxio_64.c b/arch/sparc/kernel/auxio_64.c index 9f52db2d441c..ddc84128b3c2 100644 --- a/arch/sparc/kernel/auxio_64.c +++ b/arch/sparc/kernel/auxio_64.c @@ -104,7 +104,7 @@ MODULE_DEVICE_TABLE(of, auxio_match);  static int __devinit auxio_probe(struct of_device *dev, const struct of_device_id *match)  { -	struct device_node *dp = dev->node; +	struct device_node *dp = dev->dev.of_node;  	unsigned long size;  	if (!strcmp(dp->parent->name, "ebus")) { @@ -132,10 +132,11 @@ static int __devinit auxio_probe(struct of_device *dev, const struct of_device_i  }  static struct of_platform_driver auxio_driver = { -	.match_table	= auxio_match,  	.probe		= auxio_probe, -	.driver		= { -		.name	= "auxio", +	.driver = { +		.name = "auxio", +		.owner = THIS_MODULE, +		.of_match_table = auxio_match,  	},  };  | 
