diff options
Diffstat (limited to 'drivers/block/amiflop.c')
| -rw-r--r-- | drivers/block/amiflop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/amiflop.c b/drivers/block/amiflop.c index c9751b2b57e6..7516baff3bb9 100644 --- a/drivers/block/amiflop.c +++ b/drivers/block/amiflop.c | |||
| @@ -1714,10 +1714,10 @@ static int __init amiga_floppy_init(void) | |||
| 1714 | int i, ret; | 1714 | int i, ret; |
| 1715 | 1715 | ||
| 1716 | if (!MACH_IS_AMIGA) | 1716 | if (!MACH_IS_AMIGA) |
| 1717 | return -ENXIO; | 1717 | return -ENODEV; |
| 1718 | 1718 | ||
| 1719 | if (!AMIGAHW_PRESENT(AMI_FLOPPY)) | 1719 | if (!AMIGAHW_PRESENT(AMI_FLOPPY)) |
| 1720 | return -ENXIO; | 1720 | return -ENODEV; |
| 1721 | 1721 | ||
| 1722 | if (register_blkdev(FLOPPY_MAJOR,"fd")) | 1722 | if (register_blkdev(FLOPPY_MAJOR,"fd")) |
| 1723 | return -EBUSY; | 1723 | return -EBUSY; |
| @@ -1755,7 +1755,7 @@ static int __init amiga_floppy_init(void) | |||
| 1755 | if (!floppy_queue) | 1755 | if (!floppy_queue) |
| 1756 | goto out_queue; | 1756 | goto out_queue; |
| 1757 | 1757 | ||
| 1758 | ret = -ENXIO; | 1758 | ret = -ENODEV; |
| 1759 | if (fd_probe_drives() < 1) /* No usable drives */ | 1759 | if (fd_probe_drives() < 1) /* No usable drives */ |
| 1760 | goto out_probe; | 1760 | goto out_probe; |
| 1761 | 1761 | ||
