|
@@ -53,7 +53,7 @@ static int doing_pdma;
|
|
|
|
|
|
static irqreturn_t floppy_hardint(int irq, void *dev_id)
|
|
static irqreturn_t floppy_hardint(int irq, void *dev_id)
|
|
{
|
|
{
|
|
- register unsigned char st;
|
|
|
|
|
|
+ unsigned char st;
|
|
|
|
|
|
#undef TRACE_FLPY_INT
|
|
#undef TRACE_FLPY_INT
|
|
|
|
|
|
@@ -71,8 +71,8 @@ static irqreturn_t floppy_hardint(int irq, void *dev_id)
|
|
#endif
|
|
#endif
|
|
|
|
|
|
{
|
|
{
|
|
- register int lcount;
|
|
|
|
- register char *lptr;
|
|
|
|
|
|
+ int lcount;
|
|
|
|
+ char *lptr;
|
|
|
|
|
|
st = 1;
|
|
st = 1;
|
|
for (lcount = virtual_dma_count, lptr = virtual_dma_addr;
|
|
for (lcount = virtual_dma_count, lptr = virtual_dma_addr;
|