diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-03-04 08:29:09 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-03-04 08:29:09 +0000 |
commit | 664937a3d90d3e11b486b2c019041dc901d2893f (patch) | |
tree | f0ce25de8b0e71c8b8aa5607f8bb6484c642158c /arch/mips/jazz | |
parent | 4e36f47c962150bc140d858803f57ea47fb6e455 (diff) |
- Some small cleanups
- The core of the new second level cache handling for Indy style l2 caches
was missing ...
Diffstat (limited to 'arch/mips/jazz')
-rw-r--r-- | arch/mips/jazz/hw-access.c | 4 | ||||
-rw-r--r-- | arch/mips/jazz/reset.c | 2 | ||||
-rw-r--r-- | arch/mips/jazz/setup.c | 8 |
3 files changed, 8 insertions, 6 deletions
diff --git a/arch/mips/jazz/hw-access.c b/arch/mips/jazz/hw-access.c index 73122bcc7..8765be1a7 100644 --- a/arch/mips/jazz/hw-access.c +++ b/arch/mips/jazz/hw-access.c @@ -7,7 +7,7 @@ * * Copyright (C) 1995, 1996, 1997 by Ralf Baechle * - * $Id: hw-access.c,v 1.4 1997/12/01 17:57:23 ralf Exp $ + * $Id: hw-access.c,v 1.5 1997/12/29 00:06:49 tsbogend Exp $ */ #include <linux/delay.h> #include <linux/linkage.h> @@ -180,5 +180,5 @@ void jazz_keyboard_setup(void) kbd_write_command = jazz_write_command; kbd_read_status = jazz_read_status; request_region(0x60, 16, "keyboard"); - r4030_write_reg16(JAZZ_IO_IRQ_ENABLE, r4030_read_reg16(JAZZ_IO_IRQ_ENABLE) | JAZZ_IE_KEYBOARD); + r4030_write_reg16(JAZZ_IO_IRQ_ENABLE, r4030_read_reg16(JAZZ_IO_IRQ_ENABLE) | JAZZ_IE_KEYBOARD); } diff --git a/arch/mips/jazz/reset.c b/arch/mips/jazz/reset.c index d26e44034..f1aac5388 100644 --- a/arch/mips/jazz/reset.c +++ b/arch/mips/jazz/reset.c @@ -2,6 +2,8 @@ * linux/arch/mips/jazz/process.c * * Reset a Jazz machine. + * + * $Id:$ */ #include <linux/sched.h> diff --git a/arch/mips/jazz/setup.c b/arch/mips/jazz/setup.c index d6ca9c516..d088a302c 100644 --- a/arch/mips/jazz/setup.c +++ b/arch/mips/jazz/setup.c @@ -7,7 +7,7 @@ * * Copyright (C) 1996, 1997 by Ralf Baechle * - * $Id: setup.c,v 1.6 1997/12/02 03:43:43 ralf Exp $ + * $Id: setup.c,v 1.7 1997/12/29 00:06:49 tsbogend Exp $ */ #include <linux/init.h> #include <linux/ioport.h> @@ -100,9 +100,9 @@ __initfunc(void jazz_setup(void)) } } - add_wired_entry (0x02000017, 0x03c00017, 0xe0000000, PM_64K); - add_wired_entry (0x02400017, 0x02440017, 0xe2000000, PM_16M); - add_wired_entry (0x01800017, 0x01000017, 0xe4000000, PM_4M); + add_wired_entry (0x02000017, 0x03c00017, 0xe0000000, PM_64K); + add_wired_entry (0x02400017, 0x02440017, 0xe2000000, PM_16M); + add_wired_entry (0x01800017, 0x01000017, 0xe4000000, PM_4M); irq_setup = jazz_irq_setup; fd_cacheflush = jazz_fd_cacheflush; |