summaryrefslogtreecommitdiffstats
path: root/sys/arm/ti
diff options
context:
space:
mode:
authorandrew <andrew@FreeBSD.org>2016-04-30 17:27:33 +0000
committerandrew <andrew@FreeBSD.org>2016-04-30 17:27:33 +0000
commitde62827a8a4318efe3c690ce949516a519c65554 (patch)
tree66251398a3963588fab47b947c0b5130b21d6abb /sys/arm/ti
parentcee9c1ee19ae04508a3ed8e55b7ee8ada9319b87 (diff)
downloadFreeBSD-src-de62827a8a4318efe3c690ce949516a519c65554.zip
FreeBSD-src-de62827a8a4318efe3c690ce949516a519c65554.tar.gz
Add a MULTIDELAY option to allow the ARM kernel to have multiple DELAY
implementations. Early in the boot the kernel will use an approximate, however after the timer has been probed it will switch to a more accurate implementation. Reviewed by: manu Sponsored by: ABT Systems Ltd Differential Revision: https://reviews.freebsd.org/D5762
Diffstat (limited to 'sys/arm/ti')
-rw-r--r--sys/arm/ti/ti_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arm/ti/ti_machdep.c b/sys/arm/ti/ti_machdep.c
index 696bf61..f8d5395 100644
--- a/sys/arm/ti/ti_machdep.c
+++ b/sys/arm/ti/ti_machdep.c
@@ -128,7 +128,7 @@ static platform_method_t omap4_methods[] = {
PLATFORMMETHOD_END,
};
-FDT_PLATFORM_DEF(omap4, "omap4", 0, "ti,omap4430");
+FDT_PLATFORM_DEF(omap4, "omap4", 0, "ti,omap4430", 0);
#endif
#if defined(SOC_TI_AM335X)
@@ -139,5 +139,5 @@ static platform_method_t am335x_methods[] = {
PLATFORMMETHOD_END,
};
-FDT_PLATFORM_DEF(am335x, "am335x", 0, "ti,am335x");
+FDT_PLATFORM_DEF(am335x, "am335x", 0, "ti,am335x", 0);
#endif
OpenPOWER on IntegriCloud