summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandrew <andrew@FreeBSD.org>2015-05-23 14:48:03 +0000
committerandrew <andrew@FreeBSD.org>2015-05-23 14:48:03 +0000
commit87c8fa6302d3210344b43543cfca05cf28c67c22 (patch)
tree51d5f3944e8ef8877bfd8c45fc7f8762b7812da4
parentd47d8093012fa1e05767805bedf0703095d5b996 (diff)
downloadFreeBSD-src-87c8fa6302d3210344b43543cfca05cf28c67c22.zip
FreeBSD-src-87c8fa6302d3210344b43543cfca05cf28c67c22.tar.gz
Remove an unused header.
-rw-r--r--sys/arm/ti/omap4/omap4var.h91
-rw-r--r--sys/arm/ti/omap4/pandaboard/pandaboard.c1
2 files changed, 0 insertions, 92 deletions
diff --git a/sys/arm/ti/omap4/omap4var.h b/sys/arm/ti/omap4/omap4var.h
deleted file mode 100644
index 8246e76..0000000
--- a/sys/arm/ti/omap4/omap4var.h
+++ /dev/null
@@ -1,91 +0,0 @@
-/*-
- * Copyright (c) 2010
- * Ben Gray <ben.r.gray@gmail.com>.
- * 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.
- * 3. The name of the company nor the name of the author may be used to
- * endorse or promote products derived from this software without specific
- * prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY BEN GRAY ``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 BEN GRAY 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.
- *
- * $FreeBSD$
- */
-
-#ifndef _OMAP4VAR_H_
-#define _OMAP4VAR_H_
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/kernel.h>
-#include <sys/module.h>
-#include <sys/time.h>
-#include <sys/bus.h>
-#include <sys/resource.h>
-#include <sys/rman.h>
-#include <sys/sysctl.h>
-#include <sys/endian.h>
-
-#include <machine/bus.h>
-#include <machine/cpu.h>
-#include <machine/cpufunc.h>
-#include <machine/resource.h>
-#include <machine/intr.h>
-
-
-void omap4_mask_all_intr(void);
-void omap4_post_filter_intr(void *arg);
-
-struct omap4_softc {
- device_t sc_dev;
- bus_space_tag_t sc_iotag;
-
- /* Handles for the two generic interrupt controller (GIC) register mappings */
- bus_space_handle_t sc_gic_cpu_ioh;
- bus_space_handle_t sc_gic_dist_ioh;
-
- /* Handle for the PL310 L2 cache controller */
- bus_space_handle_t sc_pl310_ioh;
-
- /* Handle for the global and provate timer register set in the Cortex core */
- bus_space_handle_t sc_prv_timer_ioh;
- bus_space_handle_t sc_gbl_timer_ioh;
-
- /* SCM access */
- struct resource *sc_scm_mem;
- int sc_scm_rid;
-};
-
-struct omap4_intr_conf {
- int num;
- unsigned int priority;
- unsigned int target_cpu;
-};
-
-int omap4_setup_intr_controller(device_t dev,
- const struct omap4_intr_conf *irqs);
-int omap4_setup_gic_cpu(unsigned int prio_mask);
-
-void omap4_init_timer(device_t dev);
-
-int omap4_setup_l2cache_controller(struct omap4_softc *sc);
-void omap4_smc_call(uint32_t fn, uint32_t arg);
-
-#endif /* _OMAP4VAR_H_ */
diff --git a/sys/arm/ti/omap4/pandaboard/pandaboard.c b/sys/arm/ti/omap4/pandaboard/pandaboard.c
index e480132..20e5e8a6 100644
--- a/sys/arm/ti/omap4/pandaboard/pandaboard.c
+++ b/sys/arm/ti/omap4/pandaboard/pandaboard.c
@@ -42,7 +42,6 @@ __FBSDID("$FreeBSD$");
#include <machine/vmparam.h>
#include <machine/fdt.h>
-#include <arm/ti/omap4/omap4var.h>
#include <arm/ti/omap4/omap4_reg.h>
/* Registers in the SCRM that control the AUX clocks */
OpenPOWER on IntegriCloud