]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/block/amiflop.c
OMAP3 NAND: move NAND_BLOCK_SIZE macro to board-3430sdp-flash.c
[linux-2.6-omap-h63xx.git] / drivers / block / amiflop.c
index 6ce8b897e2623f025de20994a8f02a11eee2e8f2..7516baff3bb914116742b12a634ba4ab95db361a 100644 (file)
@@ -1422,7 +1422,7 @@ static void redo_fd_request(void)
        goto repeat;
 }
 
-static void do_fd_request(request_queue_t * q)
+static void do_fd_request(struct request_queue * q)
 {
        redo_fd_request();
 }
@@ -1714,10 +1714,10 @@ static int __init amiga_floppy_init(void)
        int i, ret;
 
        if (!MACH_IS_AMIGA)
-               return -ENXIO;
+               return -ENODEV;
 
        if (!AMIGAHW_PRESENT(AMI_FLOPPY))
-               return -ENXIO;
+               return -ENODEV;
 
        if (register_blkdev(FLOPPY_MAJOR,"fd"))
                return -EBUSY;
@@ -1755,7 +1755,7 @@ static int __init amiga_floppy_init(void)
        if (!floppy_queue)
                goto out_queue;
 
-       ret = -ENXIO;
+       ret = -ENODEV;
        if (fd_probe_drives() < 1) /* No usable drives */
                goto out_probe;