summaryrefslogtreecommitdiffstats
path: root/sys/arm/arm
diff options
context:
space:
mode:
authorandrew <andrew@FreeBSD.org>2016-11-11 15:13:30 +0000
committerLuiz Souza <luiz@netgate.com>2017-09-06 11:24:04 -0500
commit1fcb77c5ed33e15c8b4324ffca97eb8906306d63 (patch)
tree0538939b8ce82b862e3cbe23a21049f78d89c475 /sys/arm/arm
parent043be154c000bd580f87f7098f3214832c0a8f74 (diff)
downloadFreeBSD-src-1fcb77c5ed33e15c8b4324ffca97eb8906306d63.zip
FreeBSD-src-1fcb77c5ed33e15c8b4324ffca97eb8906306d63.tar.gz
Use the modern spelling of ofw_bus_node_is_compatible in sys/arm.
Sponsored by: ABT Systems Ltd (cherry picked from commit 7168ae84d82220caac0bb5f5f5d68ccc4e20915b)
Diffstat (limited to 'sys/arm/arm')
-rw-r--r--sys/arm/arm/gic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/arm/gic.c b/sys/arm/arm/gic.c
index 7fe5f2d..9edcf0e 100644
--- a/sys/arm/arm/gic.c
+++ b/sys/arm/arm/gic.c
@@ -376,7 +376,7 @@ gic_decode_fdt(phandle_t iparent, pcell_t *intr, int *interrupt,
if (self == 0) {
for (ocd = compat_data; ocd->ocd_str != NULL; ocd++) {
- if (fdt_is_compatible(iparent, ocd->ocd_str)) {
+ if (ofw_bus_node_is_compatible(iparent, ocd->ocd_str)) {
self = iparent;
break;
}
OpenPOWER on IntegriCloud