diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-08-20 21:58:59 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-08-20 21:58:59 +0000 |
commit | 892bf98f0c04e9297979936d973c85e62a3f0b96 (patch) | |
tree | 3f9570013732b9472502e71b25d5a76591eaed9a /include/asm-mips | |
parent | d4339ea6c6ab0bdf909d587bd9c5a754e362833d (diff) |
More MIPS64 chainsawing.
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/bcache.h | 12 | ||||
-rw-r--r-- | include/asm-mips/bootinfo.h | 4 | ||||
-rw-r--r-- | include/asm-mips/dma.h | 4 | ||||
-rw-r--r-- | include/asm-mips/elf.h | 3 | ||||
-rw-r--r-- | include/asm-mips/reboot.h | 8 |
5 files changed, 16 insertions, 15 deletions
diff --git a/include/asm-mips/bcache.h b/include/asm-mips/bcache.h index 0296a0b77..e3507bb04 100644 --- a/include/asm-mips/bcache.h +++ b/include/asm-mips/bcache.h @@ -1,14 +1,14 @@ -/* - * include/asm-mips/bcache.h +/* $Id$ * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * - * Copyright (c) 1997 by Ralf Baechle - * - * $Id: bcache.h,v 1.3 1998/01/04 00:59:35 ralf Exp $ + * Copyright (c) 1997, 1999 by Ralf Baechle */ +#ifndef _ASM_BCACHE_H +#define _ASM_BCACHE_H + struct bcache_ops { void (*bc_enable)(void); void (*bc_disable)(void); @@ -20,3 +20,5 @@ extern void indy_sc_init(void); extern void sni_pcimt_sc_init(void); extern struct bcache_ops *bcops; + +#endif /* _ASM_BCACHE_H */ diff --git a/include/asm-mips/bootinfo.h b/include/asm-mips/bootinfo.h index 454b68991..d576ca8ce 100644 --- a/include/asm-mips/bootinfo.h +++ b/include/asm-mips/bootinfo.h @@ -1,4 +1,4 @@ -/* $Id: bootinfo.h,v 1.6 1999/01/04 16:09:20 ralf Exp $ +/* $Id: bootinfo.h,v 1.7 1999/04/12 18:59:14 harald Exp $ * * bootinfo.h -- Definition of the Linux/MIPS boot information structure * @@ -161,7 +161,7 @@ typedef struct mips_arc_DisplayInfo { /* video adapter information */ unsigned short lines; } mips_arc_DisplayInfo; -#ifdef CONFIG_SGI +#ifdef CONFIG_SGI_IP22 /* screen info will dissapear... soon */ //#define DEFAULT_SCREEN_INFO {0, 0, 0, 0, 0, 158, 0, 0, 0, 62, 0, 16} #define DEFAULT_SCREEN_INFO {0, 0, 0, 0, 0, 160, 0, 0, 0, 64, 0, 16} diff --git a/include/asm-mips/dma.h b/include/asm-mips/dma.h index 1432efa8e..81868496a 100644 --- a/include/asm-mips/dma.h +++ b/include/asm-mips/dma.h @@ -1,4 +1,4 @@ -/* $Id: dma.h,v 1.4 1998/11/15 03:25:44 ralf Exp $ +/* $Id: dma.h,v 1.2 1999/01/04 16:09:21 ralf Exp $ * linux/include/asm/dma.h: Defines for using and allocating dma channels. * Written by Hennus Bergman, 1992. * High DMA channel support & info by Hannu Savolainen @@ -83,7 +83,7 @@ * Deskstations or Acer PICA but not the much more versatile DMA logic used * for the local devices on Acer PICA or Magnums. */ -#ifndef CONFIG_SGI +#ifndef CONFIG_SGI_IP22 #define MAX_DMA_ADDRESS (PAGE_OFFSET + 0x01000000) #else #define MAX_DMA_ADDRESS (~0UL) diff --git a/include/asm-mips/elf.h b/include/asm-mips/elf.h index af1a8f171..eb89b6317 100644 --- a/include/asm-mips/elf.h +++ b/include/asm-mips/elf.h @@ -1,5 +1,5 @@ /* - * $Id: elf.h,v 1.5 1998/03/17 22:16:13 ralf Exp $ + * $Id: elf.h,v 1.6 1999/02/15 02:22:10 ralf Exp $ */ #ifndef __ASM_MIPS_ELF_H #define __ASM_MIPS_ELF_H @@ -21,7 +21,6 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; /* * These are used to set parameters in the core dumps. - * FIXME(eric) I don't know what the correct endianness to use is. */ #define ELF_CLASS ELFCLASS32 #ifdef __MIPSEB__ diff --git a/include/asm-mips/reboot.h b/include/asm-mips/reboot.h index 930b49831..217c4a828 100644 --- a/include/asm-mips/reboot.h +++ b/include/asm-mips/reboot.h @@ -3,15 +3,15 @@ * License. See the file "COPYING" in the main directory of this archive * for more details. * - * Copyright (C) 1997 by Ralf Baechle + * Copyright (C) 1997, 1999 by Ralf Baechle * * Declare variables for rebooting. */ -#ifndef __ASM_MIPS_REBOOT_H -#define __ASM_MIPS_REBOOT_H +#ifndef _ASM_REBOOT_H +#define _ASM_REBOOT_H void (*_machine_restart)(char *command); void (*_machine_halt)(void); void (*_machine_power_off)(void); -#endif /* __ASM_MIPS_REBOOT_H */ +#endif /* _ASM_REBOOT_H */ |