|
@@ -782,7 +782,7 @@ static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat)
|
|
|
*/
|
|
|
#define IOAT_TEST_SIZE 2000
|
|
|
|
|
|
-static void __devinit ioat_dma_test_callback(void *dma_async_param)
|
|
|
+static void ioat_dma_test_callback(void *dma_async_param)
|
|
|
{
|
|
|
struct completion *cmp = dma_async_param;
|
|
|
|
|
@@ -793,7 +793,7 @@ static void __devinit ioat_dma_test_callback(void *dma_async_param)
|
|
|
* ioat_dma_self_test - Perform a IOAT transaction to verify the HW works.
|
|
|
* @device: device to be tested
|
|
|
*/
|
|
|
-int __devinit ioat_dma_self_test(struct ioatdma_device *device)
|
|
|
+int ioat_dma_self_test(struct ioatdma_device *device)
|
|
|
{
|
|
|
int i;
|
|
|
u8 *src;
|
|
@@ -994,7 +994,7 @@ static void ioat_disable_interrupts(struct ioatdma_device *device)
|
|
|
writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
|
|
|
}
|
|
|
|
|
|
-int __devinit ioat_probe(struct ioatdma_device *device)
|
|
|
+int ioat_probe(struct ioatdma_device *device)
|
|
|
{
|
|
|
int err = -ENODEV;
|
|
|
struct dma_device *dma = &device->common;
|
|
@@ -1049,7 +1049,7 @@ err_dma_pool:
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-int __devinit ioat_register(struct ioatdma_device *device)
|
|
|
+int ioat_register(struct ioatdma_device *device)
|
|
|
{
|
|
|
int err = dma_async_device_register(&device->common);
|
|
|
|
|
@@ -1183,7 +1183,7 @@ void ioat_kobject_del(struct ioatdma_device *device)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-int __devinit ioat1_dma_probe(struct ioatdma_device *device, int dca)
|
|
|
+int ioat1_dma_probe(struct ioatdma_device *device, int dca)
|
|
|
{
|
|
|
struct pci_dev *pdev = device->pdev;
|
|
|
struct dma_device *dma;
|
|
@@ -1216,7 +1216,7 @@ int __devinit ioat1_dma_probe(struct ioatdma_device *device, int dca)
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-void __devexit ioat_dma_remove(struct ioatdma_device *device)
|
|
|
+void ioat_dma_remove(struct ioatdma_device *device)
|
|
|
{
|
|
|
struct dma_device *dma = &device->common;
|
|
|
|