diff options
Diffstat (limited to 'arch/m68k/apollo/config.c')
| -rw-r--r-- | arch/m68k/apollo/config.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/m68k/apollo/config.c b/arch/m68k/apollo/config.c index 0a30406b944..f5565d6eeb8 100644 --- a/arch/m68k/apollo/config.c +++ b/arch/m68k/apollo/config.c @@ -177,8 +177,8 @@ irqreturn_t dn_timer_int(int irq, void *dev_id)  	timer_handler(irq, dev_id); -	x=*(volatile unsigned char *)(timer+3); -	x=*(volatile unsigned char *)(timer+5); +	x = *(volatile unsigned char *)(apollo_timer + 3); +	x = *(volatile unsigned char *)(apollo_timer + 5);  	return IRQ_HANDLED;  } @@ -186,17 +186,17 @@ irqreturn_t dn_timer_int(int irq, void *dev_id)  void dn_sched_init(irq_handler_t timer_routine)  {  	/* program timer 1 */ -	*(volatile unsigned char *)(timer+3)=0x01; -	*(volatile unsigned char *)(timer+1)=0x40; -	*(volatile unsigned char *)(timer+5)=0x09; -	*(volatile unsigned char *)(timer+7)=0xc4; +	*(volatile unsigned char *)(apollo_timer + 3) = 0x01; +	*(volatile unsigned char *)(apollo_timer + 1) = 0x40; +	*(volatile unsigned char *)(apollo_timer + 5) = 0x09; +	*(volatile unsigned char *)(apollo_timer + 7) = 0xc4;  	/* enable IRQ of PIC B */  	*(volatile unsigned char *)(pica+1)&=(~8);  #if 0 -	printk("*(0x10803) %02x\n",*(volatile unsigned char *)(timer+0x3)); -	printk("*(0x10803) %02x\n",*(volatile unsigned char *)(timer+0x3)); +	printk("*(0x10803) %02x\n",*(volatile unsigned char *)(apollo_timer + 0x3)); +	printk("*(0x10803) %02x\n",*(volatile unsigned char *)(apollo_timer + 0x3));  #endif  	if (request_irq(IRQ_APOLLO, dn_timer_int, 0, "time", timer_routine))  |