Commit 8b551fcc authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jens Axboe

[PATCH] M68k floppy warnings

M68k floppy: Kill warnings when compiling a multi-platform kernel
parent 01b9e994
...@@ -72,6 +72,7 @@ static __inline__ unsigned char fd_inb(int port) ...@@ -72,6 +72,7 @@ static __inline__ unsigned char fd_inb(int port)
return inb_p(port); return inb_p(port);
else if(MACH_IS_SUN3X) else if(MACH_IS_SUN3X)
return sun3x_82072_fd_inb(port); return sun3x_82072_fd_inb(port);
return 0;
} }
static __inline__ void fd_outb(unsigned char value, int port) static __inline__ void fd_outb(unsigned char value, int port)
...@@ -90,7 +91,7 @@ static int fd_request_irq(void) ...@@ -90,7 +91,7 @@ static int fd_request_irq(void)
"floppy", floppy_hardint); "floppy", floppy_hardint);
else if(MACH_IS_SUN3X) else if(MACH_IS_SUN3X)
return sun3xflop_request_irq(); return sun3xflop_request_irq();
return -ENXIO;
} }
static void fd_free_irq(void) static void fd_free_irq(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment