1
0
Fork 0

powerpc: don't duplicate name between vio_driver and device_driver

Just set the name field directly in the device_driver structure
contained in the vio_driver struct.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
hifive-unleashed-5.1
Stephen Rothwell 2005-10-24 14:53:21 +10:00
parent f38d87f566
commit 6fdf5392ca
10 changed files with 31 additions and 19 deletions

View File

@ -76,10 +76,9 @@ static int vio_bus_remove(struct device *dev)
int vio_register_driver(struct vio_driver *viodrv)
{
printk(KERN_DEBUG "%s: driver %s registering\n", __FUNCTION__,
viodrv->name);
viodrv->driver.name);
/* fill in 'struct driver' fields */
viodrv->driver.name = viodrv->name;
viodrv->driver.bus = &vio_bus_type;
viodrv->driver.probe = vio_bus_probe;
viodrv->driver.remove = vio_bus_remove;

View File

@ -781,10 +781,12 @@ static struct vio_device_id viodasd_device_table[] __devinitdata = {
MODULE_DEVICE_TABLE(vio, viodasd_device_table);
static struct vio_driver viodasd_driver = {
.name = "viodasd",
.id_table = viodasd_device_table,
.probe = viodasd_probe,
.remove = viodasd_remove
.remove = viodasd_remove,
.driver = {
.name = "viodasd",
}
};
/*

View File

@ -739,10 +739,12 @@ static struct vio_device_id viocd_device_table[] __devinitdata = {
MODULE_DEVICE_TABLE(vio, viocd_device_table);
static struct vio_driver viocd_driver = {
.name = "viocd",
.id_table = viocd_device_table,
.probe = viocd_probe,
.remove = viocd_remove
.remove = viocd_remove,
.driver = {
.name = "viocd",
}
};
static int __init viocd_init(void)

View File

@ -95,11 +95,11 @@ static int __devexit hvc_vio_remove(struct vio_dev *vdev)
}
static struct vio_driver hvc_vio_driver = {
.name = hvc_driver_name,
.id_table = hvc_driver_table,
.probe = hvc_vio_probe,
.remove = hvc_vio_remove,
.driver = {
.name = hvc_driver_name,
.owner = THIS_MODULE,
}
};

View File

@ -720,10 +720,12 @@ static int __devexit hvcs_remove(struct vio_dev *dev)
};
static struct vio_driver hvcs_vio_driver = {
.name = hvcs_driver_name,
.id_table = hvcs_driver_table,
.probe = hvcs_probe,
.remove = hvcs_remove,
.driver = {
.name = hvcs_driver_name,
}
};
/* Only called from hvcs_get_pi please */

View File

@ -996,10 +996,12 @@ static struct vio_device_id viotape_device_table[] __devinitdata = {
MODULE_DEVICE_TABLE(vio, viotape_device_table);
static struct vio_driver viotape_driver = {
.name = "viotape",
.id_table = viotape_device_table,
.probe = viotape_probe,
.remove = viotape_remove
.remove = viotape_remove,
.driver = {
.name = "viotape",
}
};

View File

@ -1150,10 +1150,12 @@ static struct vio_device_id ibmveth_device_table[] __devinitdata= {
MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
static struct vio_driver ibmveth_driver = {
.name = (char *)ibmveth_driver_name,
.id_table = ibmveth_device_table,
.probe = ibmveth_probe,
.remove = ibmveth_remove
.id_table = ibmveth_device_table,
.probe = ibmveth_probe,
.remove = ibmveth_remove,
.driver = {
.name = ibmveth_driver_name,
}
};
static int __init ibmveth_module_init(void)

View File

@ -1648,10 +1648,12 @@ static struct vio_device_id veth_device_table[] __devinitdata = {
MODULE_DEVICE_TABLE(vio, veth_device_table);
static struct vio_driver veth_driver = {
.name = DRV_NAME,
.id_table = veth_device_table,
.probe = veth_probe,
.remove = veth_remove
.remove = veth_remove,
.driver = {
.name = DRV_NAME,
}
};
/*

View File

@ -1546,10 +1546,12 @@ static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
static struct vio_driver ibmvscsi_driver = {
.name = "ibmvscsi",
.id_table = ibmvscsi_device_table,
.probe = ibmvscsi_probe,
.remove = ibmvscsi_remove
.remove = ibmvscsi_remove,
.driver = {
.name = "ibmvscsi",
}
};
int __init ibmvscsi_module_init(void)

View File

@ -55,7 +55,6 @@ struct vio_dev {
struct vio_driver {
struct list_head node;
char *name;
const struct vio_device_id *id_table;
int (*probe)(struct vio_dev *dev, const struct vio_device_id *id);
int (*remove)(struct vio_dev *dev);