]> git.neil.brown.name Git - history.git/commitdiff
Missing exports
authorJens Axboe <axboe@burns.home.kernel.dk>
Mon, 16 Sep 2002 16:54:20 +0000 (18:54 +0200)
committerJens Axboe <axboe@burns.home.kernel.dk>
Mon, 16 Sep 2002 16:54:20 +0000 (18:54 +0200)
drivers/ide/ide-dma.c
drivers/ide/ide.c

index ac9388139ee1d823851ab3e88567e3a91973991c..845bfb7e95aad527749b788d440f937630be6ca5 100644 (file)
@@ -211,6 +211,8 @@ ide_startstop_t ide_dma_intr (ide_drive_t *drive)
        return DRIVER(drive)->error(drive, "dma_intr", stat);
 }
 
+EXPORT_SYMBOL_GPL(ide_dma_intr);
+
 static int ide_build_sglist (ide_drive_t *drive, struct request *rq)
 {
        ide_hwif_t *hwif = HWIF(drive);
@@ -365,6 +367,8 @@ use_pio_instead:
        return 0; /* revert to PIO for this request */
 }
 
+EXPORT_SYMBOL_GPL(ide_build_dmatable);
+
 /* Teardown mappings after DMA has completed.  */
 void ide_destroy_dmatable (ide_drive_t *drive)
 {
@@ -376,6 +380,8 @@ void ide_destroy_dmatable (ide_drive_t *drive)
        HWIF(drive)->sg_dma_active = 0;
 }
 
+EXPORT_SYMBOL_GPL(ide_destroy_dmatable);
+
 static int config_drive_for_dma (ide_drive_t *drive)
 {
        struct hd_driveid *id = drive->id;
@@ -1019,4 +1025,4 @@ void ide_setup_dma (ide_hwif_t *hwif, unsigned long dma_base, unsigned int num_p
                BUG();
 }
 
-
+EXPORT_SYMBOL_GPL(ide_setup_dma);
index bea8ce459ecb899baa2617c1438e728f451c5853..78b2998a70c33e2e5fb6b2fcd23f734eddc4824f 100644 (file)
@@ -194,6 +194,8 @@ int noautodma = 0;
 int noautodma = 1;
 #endif
 
+EXPORT_SYMBOL(noautodma);
+
 /*
  * ide_modules keeps track of the available IDE chipset/probe/driver modules.
  */