summaryrefslogtreecommitdiffstats
path: root/sys/boot/arm
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2007-08-17 18:22:31 +0000
committerimp <imp@FreeBSD.org>2007-08-17 18:22:31 +0000
commit2318249476e9fc756b110a40744262f680d9761e (patch)
treeff689575637365a31248e5ef3aae3ac58a24fdda /sys/boot/arm
parent962a152daa224db76c2d66cc25168024d8c11f24 (diff)
downloadFreeBSD-src-2318249476e9fc756b110a40744262f680d9761e.zip
FreeBSD-src-2318249476e9fc756b110a40744262f680d9761e.tar.gz
Don't pass RB_BOOTINFO to the kernel. There's no bootinfo actually
passed into the kernel, and the kernel will soon grow that ability on arm. Approved by: re@ (blanket)
Diffstat (limited to 'sys/boot/arm')
-rw-r--r--sys/boot/arm/at91/boot2/boot2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/arm/at91/boot2/boot2.c b/sys/boot/arm/at91/boot2/boot2.c
index 0d76cd2..379bfe1 100644
--- a/sys/boot/arm/at91/boot2/boot2.c
+++ b/sys/boot/arm/at91/boot2/boot2.c
@@ -216,7 +216,7 @@ load(void)
return;
}
addr = eh.e_entry;
- ((void(*)(int))addr)(RB_BOOTINFO | (opts & RBX_MASK));
+ ((void(*)(int))addr)(opts & RBX_MASK);
}
static int
OpenPOWER on IntegriCloud