Commit 9c6cdad7 authored by Jan Beulich's avatar Jan Beulich Committed by Linus Torvalds

cleanup floppy.h

AUTO_DMA and FLOPPY_MOTOR_MASK in include/asm-*/floppy.h are dead symbols -
remove them.
Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 2e9c47cd
...@@ -91,8 +91,6 @@ static int FDC2 = -1; ...@@ -91,8 +91,6 @@ static int FDC2 = -1;
#define N_FDC 2 #define N_FDC 2
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
/* /*
* Most Alphas have no problems with floppy DMA crossing 64k borders, * Most Alphas have no problems with floppy DMA crossing 64k borders,
* except for certain ones, like XL and RUFFIAN. * except for certain ones, like XL and RUFFIAN.
......
...@@ -128,8 +128,6 @@ static inline void fd_scandrives (void) ...@@ -128,8 +128,6 @@ static inline void fd_scandrives (void)
#define N_FDC 1 #define N_FDC 1
#define N_DRIVE 4 #define N_DRIVE 4
#define FLOPPY_MOTOR_MASK 0xf0
#define CROSS_64KB(a,s) (0) #define CROSS_64KB(a,s) (0)
/* /*
......
...@@ -31,9 +31,6 @@ asmlinkage irqreturn_t floppy_hardint(int irq, void *dev_id); ...@@ -31,9 +31,6 @@ asmlinkage irqreturn_t floppy_hardint(int irq, void *dev_id);
#define FLOPPY0_TYPE (MACH_IS_Q40 ? 6 : 4) #define FLOPPY0_TYPE (MACH_IS_Q40 ? 6 : 4)
#define FLOPPY1_TYPE 0 #define FLOPPY1_TYPE 0
#define FLOPPY_MOTOR_MASK 0xf0
/* basically PC init + set use_virtual_dma */ /* basically PC init + set use_virtual_dma */
#define FDC1 m68k_floppy_init() #define FDC1 m68k_floppy_init()
......
...@@ -34,8 +34,6 @@ static inline void fd_cacheflush(char * addr, long size) ...@@ -34,8 +34,6 @@ static inline void fd_cacheflush(char * addr, long size)
#define N_FDC 1 /* do you *really* want a second controller? */ #define N_FDC 1 /* do you *really* want a second controller? */
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
/* /*
* The DMA channel used by the floppy controller cannot access data at * The DMA channel used by the floppy controller cannot access data at
* addresses >= 16MB * addresses >= 16MB
......
...@@ -266,10 +266,6 @@ static int FDC2 = -1; ...@@ -266,10 +266,6 @@ static int FDC2 = -1;
#define N_FDC 1 #define N_FDC 1
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
#define AUTO_DMA
#define EXTRA_FLOPPY_PARAMS #define EXTRA_FLOPPY_PARAMS
#endif /* __ASM_PARISC_FLOPPY_H */ #endif /* __ASM_PARISC_FLOPPY_H */
...@@ -202,8 +202,6 @@ static int FDC2 = -1; ...@@ -202,8 +202,6 @@ static int FDC2 = -1;
#define N_FDC 2 /* Don't change this! */ #define N_FDC 2 /* Don't change this! */
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
/* /*
* The PowerPC has no problems with floppy DMA crossing 64k borders. * The PowerPC has no problems with floppy DMA crossing 64k borders.
*/ */
......
...@@ -166,8 +166,6 @@ static int FDC2 = -1; ...@@ -166,8 +166,6 @@ static int FDC2 = -1;
#define N_FDC 2 /* Don't change this! */ #define N_FDC 2 /* Don't change this! */
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
/* /*
* The PowerPC has no problems with floppy DMA crossing 64k borders. * The PowerPC has no problems with floppy DMA crossing 64k borders.
*/ */
......
...@@ -263,10 +263,6 @@ static int FDC2 = -1; ...@@ -263,10 +263,6 @@ static int FDC2 = -1;
#define N_FDC 2 #define N_FDC 2
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
#define AUTO_DMA
#define EXTRA_FLOPPY_PARAMS #define EXTRA_FLOPPY_PARAMS
#endif /* __ASM_SH_FLOPPY_H */ #endif /* __ASM_SH_FLOPPY_H */
...@@ -77,8 +77,6 @@ static struct sun_floppy_ops sun_fdops; ...@@ -77,8 +77,6 @@ static struct sun_floppy_ops sun_fdops;
#define fd_dma_mem_free(addr,size) (vfree((void *)(addr))) #define fd_dma_mem_free(addr,size) (vfree((void *)(addr)))
#endif #endif
#define FLOPPY_MOTOR_MASK 0x10
/* XXX This isn't really correct. XXX */ /* XXX This isn't really correct. XXX */
#define get_dma_residue(x) (0) #define get_dma_residue(x) (0)
......
...@@ -84,8 +84,6 @@ static struct sun_floppy_ops sun_fdops; ...@@ -84,8 +84,6 @@ static struct sun_floppy_ops sun_fdops;
#define fd_free_irq() sun_fdops.fd_free_irq() #define fd_free_irq() sun_fdops.fd_free_irq()
#define fd_eject(drive) sun_fdops.fd_eject(drive) #define fd_eject(drive) sun_fdops.fd_eject(drive)
static int FLOPPY_MOTOR_MASK = 0x10;
/* Super paranoid... */ /* Super paranoid... */
#undef HAVE_DISABLE_HLT #undef HAVE_DISABLE_HLT
...@@ -622,7 +620,6 @@ static unsigned long __init isa_floppy_init(void) ...@@ -622,7 +620,6 @@ static unsigned long __init isa_floppy_init(void)
sun_fdops.fd_eject = sun_pci_fd_eject; sun_fdops.fd_eject = sun_pci_fd_eject;
fdc_status = (unsigned long) &sun_fdc->status_82077; fdc_status = (unsigned long) &sun_fdc->status_82077;
FLOPPY_MOTOR_MASK = 0xf0;
allowed_drive_mask = 0; allowed_drive_mask = 0;
sun_floppy_types[0] = 0; sun_floppy_types[0] = 0;
...@@ -729,7 +726,6 @@ static unsigned long __init sun_floppy_init(void) ...@@ -729,7 +726,6 @@ static unsigned long __init sun_floppy_init(void)
sun_fdops.fd_eject = sun_pci_fd_eject; sun_fdops.fd_eject = sun_pci_fd_eject;
fdc_status = (unsigned long) &sun_fdc->status_82077; fdc_status = (unsigned long) &sun_fdc->status_82077;
FLOPPY_MOTOR_MASK = 0xf0;
/* /*
* XXX: Find out on which machines this is really needed. * XXX: Find out on which machines this is really needed.
......
...@@ -275,10 +275,6 @@ static int FDC2 = -1; ...@@ -275,10 +275,6 @@ static int FDC2 = -1;
#define N_FDC 2 #define N_FDC 2
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
#define AUTO_DMA
#define EXTRA_FLOPPY_PARAMS #define EXTRA_FLOPPY_PARAMS
#endif /* __ASM_I386_FLOPPY_H */ #endif /* __ASM_I386_FLOPPY_H */
...@@ -274,10 +274,6 @@ static int FDC2 = -1; ...@@ -274,10 +274,6 @@ static int FDC2 = -1;
#define N_FDC 2 #define N_FDC 2
#define N_DRIVE 8 #define N_DRIVE 8
#define FLOPPY_MOTOR_MASK 0xf0
#define AUTO_DMA
#define EXTRA_FLOPPY_PARAMS #define EXTRA_FLOPPY_PARAMS
#endif /* __ASM_X86_64_FLOPPY_H */ #endif /* __ASM_X86_64_FLOPPY_H */
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