Deleted Added
full compact
macio.c (110437) macio.c (110439)
1/*
2 * Copyright 2002 by Peter Grehan. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
1/*
2 * Copyright 2002 by Peter Grehan. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: head/sys/powerpc/powermac/macio.c 110437 2003-02-06 10:47:57Z benno $
27 * $FreeBSD: head/sys/powerpc/powermac/macio.c 110439 2003-02-06 10:59:06Z benno $
28 */
29
30/*
31 * Driver for KeyLargo/Pangea, the MacPPC south bridge ASIC.
32 */
33
34#include <sys/param.h>
35#include <sys/systm.h>

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

132struct macio_quirk_entry {
133 const char *mq_name;
134 int mq_quirks;
135};
136
137static struct macio_quirk_entry macio_quirks[] = {
138 { "interrupt-controller", MACIO_QUIRK_IGNORE },
139 { "escc-legacy", MACIO_QUIRK_IGNORE },
28 */
29
30/*
31 * Driver for KeyLargo/Pangea, the MacPPC south bridge ASIC.
32 */
33
34#include <sys/param.h>
35#include <sys/systm.h>

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

132struct macio_quirk_entry {
133 const char *mq_name;
134 int mq_quirks;
135};
136
137static struct macio_quirk_entry macio_quirks[] = {
138 { "interrupt-controller", MACIO_QUIRK_IGNORE },
139 { "escc-legacy", MACIO_QUIRK_IGNORE },
140 { "gpio", MACIO_QUIRK_IGNORE },
141 { "timer", MACIO_QUIRK_IGNORE },
142 { "escc", MACIO_QUIRK_CHILD_HAS_INTR },
143 { NULL, 0 }
144};
145
146static int
147macio_get_quirks(const char *name)
148{

--- 418 unchanged lines hidden ---
140 { "timer", MACIO_QUIRK_IGNORE },
141 { "escc", MACIO_QUIRK_CHILD_HAS_INTR },
142 { NULL, 0 }
143};
144
145static int
146macio_get_quirks(const char *name)
147{

--- 418 unchanged lines hidden ---