From 714b7000772f3614c7aae55f68ed212437bdb2b1 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Tue, 1 Sep 2015 10:16:34 +0200 Subject: [PATCH] Don't use USE_ION --- boot/boot.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/boot/boot.c b/boot/boot.c index 233b9c325..cdb48d0ae 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -2,19 +2,13 @@ #include #endif -#if USE_ION #include -#endif - #include void boot() { #if USE_LIBA liba_init(); #endif -#if USE_ION - ion_ini(); -#endif - + ion_init(); hello(); }