aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/qemu
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2016-11-08 12:15:57 +0000
committerAndrew Turner <andrew@FreeBSD.org>2016-11-08 12:15:57 +0000
commitfeabce61dcd6e6b2be679e6919a0bda5ab27b19a (patch)
treee965d4492b026cfd9de1f2d7c64c7e1e9b2b3476 /sys/arm/qemu
parent31500ce90d3091027a6a9a2e61f6130db6269a1c (diff)
downloadsrc-feabce61dcd6e6b2be679e6919a0bda5ab27b19a.tar.gz
src-feabce61dcd6e6b2be679e6919a0bda5ab27b19a.zip
Start to remove the old pre-INTRNG code from the arm platforms. These have
all moved to use INTRNG. Reviewed by: manu, mmel Sponsored by: ABT Systems Ltd Differential Revision: https://reviews.freebsd.org/D8469
Notes
Notes: svn path=/head/; revision=308444
Diffstat (limited to 'sys/arm/qemu')
-rw-r--r--sys/arm/qemu/files.qemu1
-rw-r--r--sys/arm/qemu/virt_common.c45
2 files changed, 0 insertions, 46 deletions
diff --git a/sys/arm/qemu/files.qemu b/sys/arm/qemu/files.qemu
index 8e2e4973bbc5..600cda594673 100644
--- a/sys/arm/qemu/files.qemu
+++ b/sys/arm/qemu/files.qemu
@@ -8,6 +8,5 @@ kern/kern_clocksource.c standard
#
# Standard qemu virt devices and support.
#
-arm/qemu/virt_common.c standard
arm/qemu/virt_machdep.c standard
arm/qemu/virt_mp.c optional smp
diff --git a/sys/arm/qemu/virt_common.c b/sys/arm/qemu/virt_common.c
deleted file mode 100644
index cda02e539e66..000000000000
--- a/sys/arm/qemu/virt_common.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/*-
- * Copyright (c) 2015 Andrew Turner
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- */
-
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
-#include "opt_platform.h"
-
-#include <sys/param.h>
-#include <sys/systm.h>
-
-#include <dev/fdt/fdt_common.h>
-
-#include <machine/intr.h>
-
-#ifndef INTRNG
-fdt_pic_decode_t fdt_pic_table[] = {
- &gic_decode_fdt,
- NULL
-};
-#endif