diff options
-rw-r--r-- | include/asm-x86/floppy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-x86/floppy.h b/include/asm-x86/floppy.h index 438b3033a250..dbe82a5c5eac 100644 --- a/include/asm-x86/floppy.h +++ b/include/asm-x86/floppy.h | |||
@@ -53,7 +53,7 @@ static int doing_pdma; | |||
53 | 53 | ||
54 | static irqreturn_t floppy_hardint(int irq, void *dev_id) | 54 | static irqreturn_t floppy_hardint(int irq, void *dev_id) |
55 | { | 55 | { |
56 | register unsigned char st; | 56 | unsigned char st; |
57 | 57 | ||
58 | #undef TRACE_FLPY_INT | 58 | #undef TRACE_FLPY_INT |
59 | 59 | ||
@@ -71,8 +71,8 @@ static irqreturn_t floppy_hardint(int irq, void *dev_id) | |||
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | { | 73 | { |
74 | register int lcount; | 74 | int lcount; |
75 | register char *lptr; | 75 | char *lptr; |
76 | 76 | ||
77 | st = 1; | 77 | st = 1; |
78 | for (lcount = virtual_dma_count, lptr = virtual_dma_addr; | 78 | for (lcount = virtual_dma_count, lptr = virtual_dma_addr; |