]> git.sur5r.net Git - u-boot/blobdiff - api_examples/glue.c
[MIPS] Implement flush_cache()
[u-boot] / api_examples / glue.c
index 75983691fde4332d748f45c375472114a1577657..2bf47ae3d212f9f383c27683a23a4bc00f0d98b8 100644 (file)
@@ -150,7 +150,7 @@ struct sys_info * ub_get_sys_info(void)
  * timing
  *
  ****************************************/
+
 void ub_udelay(unsigned long usec)
 {
        syscall(API_UDELAY, NULL, &usec);
@@ -298,7 +298,7 @@ int ub_dev_read(int handle, void *buf, lbasize_t len, lbastart_t start)
        if (!syscall(API_DEV_READ, &err, di, buf, &len, &start, &act_len))
                return -1;
 
-       if (err) 
+       if (err)
                return err;
 
        if (act_len != len)