X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fflash25.c;h=793fab019dc546c3c298f6d44b0dc5dd4a8d7fee;hb=e6339d49f97766bd1825d6f07ec44ec864d5ebfe;hp=807ff2114286be9b8b94600224c19487352337b7;hpb=8200b51bd42e69333cbb3d50532bbd8b45201da2;p=bertos.git diff --git a/bertos/drv/flash25.c b/bertos/drv/flash25.c index 807ff211..793fab01 100644 --- a/bertos/drv/flash25.c +++ b/bertos/drv/flash25.c @@ -27,10 +27,9 @@ * the GNU General Public License. * * Copyright 2007 Develer S.r.l. (http://www.develer.com/) - * * --> * - * \brief Function library for serial Flash memory. + * \brief Function library for serial Flash memory. * * Module provide a kfile interface, that ensure an abstraction * from comunication channel and give a standard interface. @@ -55,11 +54,7 @@ #include -#if CONFIG_KERNEL - #include -#else - #define proc_yield() do {} while(0) -#endif +#include /* cpu_relax() */ #warning FIXME:This file was change, but is untest! @@ -81,8 +76,8 @@ static void flash25_waitReady(Flash25 *fd) if (!(stat & RDY_BIT)) break; - else - proc_yield(); + + cpu_relax(); } }