diff options
Diffstat (limited to 'drivers/net/ibmveth.c')
| -rw-r--r-- | drivers/net/ibmveth.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c index 36da54ad2b7b..e5246f227c98 100644 --- a/drivers/net/ibmveth.c +++ b/drivers/net/ibmveth.c | |||
| @@ -514,7 +514,7 @@ static int ibmveth_open(struct net_device *netdev) | |||
| 514 | 514 | ||
| 515 | if(lpar_rc != H_Success) { | 515 | if(lpar_rc != H_Success) { |
| 516 | ibmveth_error_printk("h_register_logical_lan failed with %ld\n", lpar_rc); | 516 | ibmveth_error_printk("h_register_logical_lan failed with %ld\n", lpar_rc); |
| 517 | ibmveth_error_printk("buffer TCE:0x%x filter TCE:0x%x rxq desc:0x%lx MAC:0x%lx\n", | 517 | ibmveth_error_printk("buffer TCE:0x%lx filter TCE:0x%lx rxq desc:0x%lx MAC:0x%lx\n", |
| 518 | adapter->buffer_list_dma, | 518 | adapter->buffer_list_dma, |
| 519 | adapter->filter_list_dma, | 519 | adapter->filter_list_dma, |
| 520 | rxq_desc.desc, | 520 | rxq_desc.desc, |
| @@ -1174,14 +1174,16 @@ static struct vio_device_id ibmveth_device_table[] __devinitdata= { | |||
| 1174 | { "network", "IBM,l-lan"}, | 1174 | { "network", "IBM,l-lan"}, |
| 1175 | { "", "" } | 1175 | { "", "" } |
| 1176 | }; | 1176 | }; |
| 1177 | |||
| 1178 | MODULE_DEVICE_TABLE(vio, ibmveth_device_table); | 1177 | MODULE_DEVICE_TABLE(vio, ibmveth_device_table); |
| 1179 | 1178 | ||
| 1180 | static struct vio_driver ibmveth_driver = { | 1179 | static struct vio_driver ibmveth_driver = { |
| 1181 | .name = (char *)ibmveth_driver_name, | 1180 | .id_table = ibmveth_device_table, |
| 1182 | .id_table = ibmveth_device_table, | 1181 | .probe = ibmveth_probe, |
| 1183 | .probe = ibmveth_probe, | 1182 | .remove = ibmveth_remove, |
| 1184 | .remove = ibmveth_remove | 1183 | .driver = { |
| 1184 | .name = ibmveth_driver_name, | ||
| 1185 | .owner = THIS_MODULE, | ||
| 1186 | } | ||
| 1185 | }; | 1187 | }; |
| 1186 | 1188 | ||
| 1187 | static int __init ibmveth_module_init(void) | 1189 | static int __init ibmveth_module_init(void) |
