Deleted Added
full compact
param.h (232449) param.h (233644)
1/* $OpenBSD: param.h,v 1.11 1998/08/30 22:05:35 millert Exp $ */
2
3/*-
4 * Copyright (c) 1988 University of Utah.
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

--- 22 unchanged lines hidden (view full) ---

31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: Utah Hdr: machparam.h 1.11 89/08/14
37 * from: @(#)param.h 8.1 (Berkeley) 6/10/93
38 * JNPR: param.h,v 1.6.2.1 2007/09/10 07:49:36 girish
1/* $OpenBSD: param.h,v 1.11 1998/08/30 22:05:35 millert Exp $ */
2
3/*-
4 * Copyright (c) 1988 University of Utah.
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

--- 22 unchanged lines hidden (view full) ---

31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: Utah Hdr: machparam.h 1.11 89/08/14
37 * from: @(#)param.h 8.1 (Berkeley) 6/10/93
38 * JNPR: param.h,v 1.6.2.1 2007/09/10 07:49:36 girish
39 * $FreeBSD: head/sys/mips/include/param.h 232449 2012-03-03 08:19:18Z jmallett $
39 * $FreeBSD: head/sys/mips/include/param.h 233644 2012-03-29 02:54:35Z jmallett $
40 */
41
42#ifndef _MIPS_INCLUDE_PARAM_H_
43#define _MIPS_INCLUDE_PARAM_H_
44
45#include <machine/_align.h>
46
47#include <sys/cdefs.h>

--- 6 unchanged lines hidden (view full) ---

54#define __PCI_REROUTE_INTERRUPT
55
56#ifndef MACHINE
57#define MACHINE "mips"
58#endif
59#ifndef MACHINE_ARCH
60#if _BYTE_ORDER == _BIG_ENDIAN
61#ifdef __mips_n64
40 */
41
42#ifndef _MIPS_INCLUDE_PARAM_H_
43#define _MIPS_INCLUDE_PARAM_H_
44
45#include <machine/_align.h>
46
47#include <sys/cdefs.h>

--- 6 unchanged lines hidden (view full) ---

54#define __PCI_REROUTE_INTERRUPT
55
56#ifndef MACHINE
57#define MACHINE "mips"
58#endif
59#ifndef MACHINE_ARCH
60#if _BYTE_ORDER == _BIG_ENDIAN
61#ifdef __mips_n64
62#define MACHINE_ARCH "mips64eb"
62#define MACHINE_ARCH "mips64"
63#ifndef MACHINE_ARCH32
63#ifndef MACHINE_ARCH32
64#define MACHINE_ARCH32 "mipseb"
64#define MACHINE_ARCH32 "mips"
65#endif
66#elif defined(__mips_n32)
65#endif
66#elif defined(__mips_n32)
67#define MACHINE_ARCH "mipsn32eb"
67#define MACHINE_ARCH "mipsn32"
68#else
68#else
69#define MACHINE_ARCH "mipseb"
69#define MACHINE_ARCH "mips"
70#endif
71#else
72#ifdef __mips_n64
73#define MACHINE_ARCH "mips64el"
74#ifndef MACHINE_ARCH32
75#define MACHINE_ARCH32 "mipsel"
76#endif
77#elif defined(__mips_n32)

--- 114 unchanged lines hidden ---
70#endif
71#else
72#ifdef __mips_n64
73#define MACHINE_ARCH "mips64el"
74#ifndef MACHINE_ARCH32
75#define MACHINE_ARCH32 "mipsel"
76#endif
77#elif defined(__mips_n32)

--- 114 unchanged lines hidden ---