summaryrefslogtreecommitdiffstats
path: root/sys/arm/at91/at91.c
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2013-11-04 22:45:26 +0000
committerian <ian@FreeBSD.org>2013-11-04 22:45:26 +0000
commitfefbe5ab0a495d58849a7fe9d9908d64840bdc2c (patch)
treeb38acd2229eed55194270f60a20d47197e5ad60e /sys/arm/at91/at91.c
parentfca50c96f29736e66f63356836d199a1295b48ed (diff)
downloadFreeBSD-src-fefbe5ab0a495d58849a7fe9d9908d64840bdc2c.zip
FreeBSD-src-fefbe5ab0a495d58849a7fe9d9908d64840bdc2c.tar.gz
Move remaining code and data related to static device mapping into the
new devmap.[ch] files. Emphasize the MD nature of these things by using the prefix arm_devmap_ on the function and type names (already a few of these things found their way into MI code, hopefully it will be harder to do by accident in the future).
Diffstat (limited to 'sys/arm/at91/at91.c')
-rw-r--r--sys/arm/at91/at91.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arm/at91/at91.c b/sys/arm/at91/at91.c
index d574fb1..583d1ab 100644
--- a/sys/arm/at91/at91.c
+++ b/sys/arm/at91/at91.c
@@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$");
#define _ARM32_BUS_DMA_PRIVATE
#include <machine/bus.h>
+#include <machine/devmap.h>
#include <machine/intr.h>
#include <arm/at91/at91var.h>
@@ -52,7 +53,7 @@ static struct at91_softc *at91_softc;
static void at91_eoi(void *);
-extern const struct pmap_devmap at91_devmap[];
+extern const struct arm_devmap_entry at91_devmap[];
uint32_t at91_master_clock;
@@ -257,7 +258,7 @@ static int
at91_attach(device_t dev)
{
struct at91_softc *sc = device_get_softc(dev);
- const struct pmap_devmap *pdevmap;
+ const struct arm_devmap_entry *pdevmap;
int i;
arm_post_filter = at91_eoi;
OpenPOWER on IntegriCloud