diff options
author | raj <raj@FreeBSD.org> | 2008-09-03 15:39:50 +0000 |
---|---|---|
committer | raj <raj@FreeBSD.org> | 2008-09-03 15:39:50 +0000 |
commit | c96f761ec1a0290b67e5d8a5396d883187b67221 (patch) | |
tree | 892bb1df63c93744c5e68f7e56ba2072cc220c72 /sys/boot/uboot/lib/console.c | |
parent | adfbe058ec9f9187c69e93a461e063d55fe67e66 (diff) | |
download | FreeBSD-src-c96f761ec1a0290b67e5d8a5396d883187b67221.zip FreeBSD-src-c96f761ec1a0290b67e5d8a5396d883187b67221.tar.gz |
Move U-Boot compatibility library to WARNS=2 level.
Diffstat (limited to 'sys/boot/uboot/lib/console.c')
-rw-r--r-- | sys/boot/uboot/lib/console.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/boot/uboot/lib/console.c b/sys/boot/uboot/lib/console.c index edc3c31..f49f455c 100644 --- a/sys/boot/uboot/lib/console.c +++ b/sys/boot/uboot/lib/console.c @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$"); #include <stand.h> #include "bootstrap.h" +#include "glue.h" int console; @@ -60,7 +61,7 @@ static int uboot_cons_init(int arg) { - return 0; + return (0); } static void |