diff options
| author | Matt Mackall <mpm@selenic.com> | 2006-06-25 08:47:11 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:01:00 -0400 |
| commit | afedfd016a78ea1b678886ab6236acbc7650fcfb (patch) | |
| tree | e507606f1f636d5557ca91305b2891070d75b3f1 | |
| parent | 51849738cf3af4d2c43a657e811a89e7f69eccc2 (diff) | |
[PATCH] random: remove SA_SAMPLE_RANDOM from floppy driver
The floppy driver is already calling add_disk_randomness as it should, so this
was redundant.
Signed-off-by: Matt Mackall <mpm@selenic.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | include/asm-alpha/floppy.h | 5 | ||||
| -rw-r--r-- | include/asm-arm/floppy.h | 2 | ||||
| -rw-r--r-- | include/asm-arm26/floppy.h | 2 | ||||
| -rw-r--r-- | include/asm-i386/floppy.h | 5 | ||||
| -rw-r--r-- | include/asm-mips/mach-generic/floppy.h | 2 | ||||
| -rw-r--r-- | include/asm-mips/mach-jazz/floppy.h | 2 | ||||
| -rw-r--r-- | include/asm-parisc/floppy.h | 6 | ||||
| -rw-r--r-- | include/asm-powerpc/floppy.h | 3 | ||||
| -rw-r--r-- | include/asm-ppc/floppy.h | 6 | ||||
| -rw-r--r-- | include/asm-sh/floppy.h | 7 | ||||
| -rw-r--r-- | include/asm-x86_64/floppy.h | 6 |
11 files changed, 18 insertions, 28 deletions
diff --git a/include/asm-alpha/floppy.h b/include/asm-alpha/floppy.h index e177d4180f83..21816d35ef89 100644 --- a/include/asm-alpha/floppy.h +++ b/include/asm-alpha/floppy.h | |||
| @@ -25,9 +25,8 @@ | |||
| 25 | #define fd_enable_irq() enable_irq(FLOPPY_IRQ) | 25 | #define fd_enable_irq() enable_irq(FLOPPY_IRQ) |
| 26 | #define fd_disable_irq() disable_irq(FLOPPY_IRQ) | 26 | #define fd_disable_irq() disable_irq(FLOPPY_IRQ) |
| 27 | #define fd_cacheflush(addr,size) /* nothing */ | 27 | #define fd_cacheflush(addr,size) /* nothing */ |
| 28 | #define fd_request_irq() request_irq(FLOPPY_IRQ, floppy_interrupt, \ | 28 | #define fd_request_irq() request_irq(FLOPPY_IRQ, floppy_interrupt,\ |
| 29 | SA_INTERRUPT|SA_SAMPLE_RANDOM, \ | 29 | SA_INTERRUPT, "floppy", NULL) |
| 30 | "floppy", NULL) | ||
| 31 | #define fd_free_irq() free_irq(FLOPPY_IRQ, NULL); | 30 | #define fd_free_irq() free_irq(FLOPPY_IRQ, NULL); |
| 32 | 31 | ||
| 33 | #ifdef CONFIG_PCI | 32 | #ifdef CONFIG_PCI |
diff --git a/include/asm-arm/floppy.h b/include/asm-arm/floppy.h index 6ea657c886b9..aa0c8d28d8d9 100644 --- a/include/asm-arm/floppy.h +++ b/include/asm-arm/floppy.h | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | 25 | ||
| 26 | #define fd_inb(port) inb((port)) | 26 | #define fd_inb(port) inb((port)) |
| 27 | #define fd_request_irq() request_irq(IRQ_FLOPPYDISK,floppy_interrupt,\ | 27 | #define fd_request_irq() request_irq(IRQ_FLOPPYDISK,floppy_interrupt,\ |
| 28 | SA_INTERRUPT|SA_SAMPLE_RANDOM,"floppy",NULL) | 28 | SA_INTERRUPT,"floppy",NULL) |
| 29 | #define fd_free_irq() free_irq(IRQ_FLOPPYDISK,NULL) | 29 | #define fd_free_irq() free_irq(IRQ_FLOPPYDISK,NULL) |
| 30 | #define fd_disable_irq() disable_irq(IRQ_FLOPPYDISK) | 30 | #define fd_disable_irq() disable_irq(IRQ_FLOPPYDISK) |
| 31 | #define fd_enable_irq() enable_irq(IRQ_FLOPPYDISK) | 31 | #define fd_enable_irq() enable_irq(IRQ_FLOPPYDISK) |
diff --git a/include/asm-arm26/floppy.h b/include/asm-arm26/floppy.h index 9e090ad7e477..a18af069ca28 100644 --- a/include/asm-arm26/floppy.h +++ b/include/asm-arm26/floppy.h | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | 22 | ||
| 23 | #define fd_inb(port) inb((port)) | 23 | #define fd_inb(port) inb((port)) |
| 24 | #define fd_request_irq() request_irq(IRQ_FLOPPYDISK,floppy_interrupt,\ | 24 | #define fd_request_irq() request_irq(IRQ_FLOPPYDISK,floppy_interrupt,\ |
| 25 | SA_INTERRUPT|SA_SAMPLE_RANDOM,"floppy",NULL) | 25 | SA_INTERRUPT,"floppy",NULL) |
| 26 | #define fd_free_irq() free_irq(IRQ_FLOPPYDISK,NULL) | 26 | #define fd_free_irq() free_irq(IRQ_FLOPPYDISK,NULL) |
| 27 | #define fd_disable_irq() disable_irq(IRQ_FLOPPYDISK) | 27 | #define fd_disable_irq() disable_irq(IRQ_FLOPPYDISK) |
| 28 | #define fd_enable_irq() enable_irq(IRQ_FLOPPYDISK) | 28 | #define fd_enable_irq() enable_irq(IRQ_FLOPPYDISK) |
diff --git a/include/asm-i386/floppy.h b/include/asm-i386/floppy.h index 03403045c182..9cb2793eb211 100644 --- a/include/asm-i386/floppy.h +++ b/include/asm-i386/floppy.h | |||
| @@ -147,9 +147,8 @@ static int fd_request_irq(void) | |||
| 147 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, | 147 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, |
| 148 | "floppy", NULL); | 148 | "floppy", NULL); |
| 149 | else | 149 | else |
| 150 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 150 | return request_irq(FLOPPY_IRQ, floppy_interrupt, SA_INTERRUPT, |
| 151 | SA_INTERRUPT|SA_SAMPLE_RANDOM, | 151 | "floppy", NULL); |
| 152 | "floppy", NULL); | ||
| 153 | 152 | ||
| 154 | } | 153 | } |
| 155 | 154 | ||
diff --git a/include/asm-mips/mach-generic/floppy.h b/include/asm-mips/mach-generic/floppy.h index 682a5858f8d7..83cd69e30ec3 100644 --- a/include/asm-mips/mach-generic/floppy.h +++ b/include/asm-mips/mach-generic/floppy.h | |||
| @@ -98,7 +98,7 @@ static inline void fd_disable_irq(void) | |||
| 98 | static inline int fd_request_irq(void) | 98 | static inline int fd_request_irq(void) |
| 99 | { | 99 | { |
| 100 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 100 | return request_irq(FLOPPY_IRQ, floppy_interrupt, |
| 101 | SA_INTERRUPT | SA_SAMPLE_RANDOM, "floppy", NULL); | 101 | SA_INTERRUPT, "floppy", NULL); |
| 102 | } | 102 | } |
| 103 | 103 | ||
| 104 | static inline void fd_free_irq(void) | 104 | static inline void fd_free_irq(void) |
diff --git a/include/asm-mips/mach-jazz/floppy.h b/include/asm-mips/mach-jazz/floppy.h index c9dad99b1232..9413117915f4 100644 --- a/include/asm-mips/mach-jazz/floppy.h +++ b/include/asm-mips/mach-jazz/floppy.h | |||
| @@ -90,7 +90,7 @@ static inline void fd_disable_irq(void) | |||
| 90 | static inline int fd_request_irq(void) | 90 | static inline int fd_request_irq(void) |
| 91 | { | 91 | { |
| 92 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 92 | return request_irq(FLOPPY_IRQ, floppy_interrupt, |
| 93 | SA_INTERRUPT | SA_SAMPLE_RANDOM, "floppy", NULL); | 93 | SA_INTERRUPT, "floppy", NULL); |
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | static inline void fd_free_irq(void) | 96 | static inline void fd_free_irq(void) |
diff --git a/include/asm-parisc/floppy.h b/include/asm-parisc/floppy.h index ca3aed768cdc..458cdb2a7530 100644 --- a/include/asm-parisc/floppy.h +++ b/include/asm-parisc/floppy.h | |||
| @@ -159,10 +159,8 @@ static int fd_request_irq(void) | |||
| 159 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, | 159 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, |
| 160 | "floppy", NULL); | 160 | "floppy", NULL); |
| 161 | else | 161 | else |
| 162 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 162 | return request_irq(FLOPPY_IRQ, floppy_interrupt, SA_INTERRUPT, |
| 163 | SA_INTERRUPT|SA_SAMPLE_RANDOM, | 163 | "floppy", NULL); |
| 164 | "floppy", NULL); | ||
| 165 | |||
| 166 | } | 164 | } |
| 167 | 165 | ||
| 168 | static unsigned long dma_mem_alloc(unsigned long size) | 166 | static unsigned long dma_mem_alloc(unsigned long size) |
diff --git a/include/asm-powerpc/floppy.h b/include/asm-powerpc/floppy.h index 7e2d169ee856..9c8d91bf5a0d 100644 --- a/include/asm-powerpc/floppy.h +++ b/include/asm-powerpc/floppy.h | |||
| @@ -27,8 +27,7 @@ | |||
| 27 | #define fd_disable_irq() disable_irq(FLOPPY_IRQ) | 27 | #define fd_disable_irq() disable_irq(FLOPPY_IRQ) |
| 28 | #define fd_cacheflush(addr,size) /* nothing */ | 28 | #define fd_cacheflush(addr,size) /* nothing */ |
| 29 | #define fd_request_irq() request_irq(FLOPPY_IRQ, floppy_interrupt, \ | 29 | #define fd_request_irq() request_irq(FLOPPY_IRQ, floppy_interrupt, \ |
| 30 | SA_INTERRUPT|SA_SAMPLE_RANDOM, \ | 30 | SA_INTERRUPT, "floppy", NULL) |
| 31 | "floppy", NULL) | ||
| 32 | #define fd_free_irq() free_irq(FLOPPY_IRQ, NULL); | 31 | #define fd_free_irq() free_irq(FLOPPY_IRQ, NULL); |
| 33 | 32 | ||
| 34 | #ifdef CONFIG_PCI | 33 | #ifdef CONFIG_PCI |
diff --git a/include/asm-ppc/floppy.h b/include/asm-ppc/floppy.h index 8ccd4a276fe9..2ba191eba448 100644 --- a/include/asm-ppc/floppy.h +++ b/include/asm-ppc/floppy.h | |||
| @@ -99,10 +99,8 @@ static int fd_request_irq(void) | |||
| 99 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, | 99 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, |
| 100 | "floppy", NULL); | 100 | "floppy", NULL); |
| 101 | else | 101 | else |
| 102 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 102 | return request_irq(FLOPPY_IRQ, floppy_interrupt, SA_INTERRUPT, |
| 103 | SA_INTERRUPT|SA_SAMPLE_RANDOM, | 103 | "floppy", NULL); |
| 104 | "floppy", NULL); | ||
| 105 | |||
| 106 | } | 104 | } |
| 107 | 105 | ||
| 108 | static int vdma_dma_setup(char *addr, unsigned long size, int mode, int io) | 106 | static int vdma_dma_setup(char *addr, unsigned long size, int mode, int io) |
diff --git a/include/asm-sh/floppy.h b/include/asm-sh/floppy.h index 38d7a2942476..307d9ce9f9ed 100644 --- a/include/asm-sh/floppy.h +++ b/include/asm-sh/floppy.h | |||
| @@ -147,11 +147,10 @@ static int fd_request_irq(void) | |||
| 147 | { | 147 | { |
| 148 | if(can_use_virtual_dma) | 148 | if(can_use_virtual_dma) |
| 149 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, | 149 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, |
| 150 | "floppy", NULL); | 150 | "floppy", NULL); |
| 151 | else | 151 | else |
| 152 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 152 | return request_irq(FLOPPY_IRQ, floppy_interrupt, SA_INTERRUPT, |
| 153 | SA_INTERRUPT|SA_SAMPLE_RANDOM, | 153 | "floppy", NULL); |
| 154 | "floppy", NULL); | ||
| 155 | 154 | ||
| 156 | } | 155 | } |
| 157 | 156 | ||
diff --git a/include/asm-x86_64/floppy.h b/include/asm-x86_64/floppy.h index 52825ce689f2..006291e89b4a 100644 --- a/include/asm-x86_64/floppy.h +++ b/include/asm-x86_64/floppy.h | |||
| @@ -147,10 +147,8 @@ static int fd_request_irq(void) | |||
| 147 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, | 147 | return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT, |
| 148 | "floppy", NULL); | 148 | "floppy", NULL); |
| 149 | else | 149 | else |
| 150 | return request_irq(FLOPPY_IRQ, floppy_interrupt, | 150 | return request_irq(FLOPPY_IRQ, floppy_interrupt, SA_INTERRUPT, |
| 151 | SA_INTERRUPT|SA_SAMPLE_RANDOM, | 151 | "floppy", NULL); |
| 152 | "floppy", NULL); | ||
| 153 | |||
| 154 | } | 152 | } |
| 155 | 153 | ||
| 156 | static unsigned long dma_mem_alloc(unsigned long size) | 154 | static unsigned long dma_mem_alloc(unsigned long size) |
