Add spaces around ('=' and '<'),  to conform to the Linux
kernel coding style. Issue found using checkpatch.

Signed-off-by: Arushi Singhal <[email protected]>
---
 drivers/mtd/nand/ams-delta.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/ams-delta.c b/drivers/mtd/nand/ams-delta.c
index d60ada4..9de6572 100644
--- a/drivers/mtd/nand/ams-delta.c
+++ b/drivers/mtd/nand/ams-delta.c
@@ -94,7 +94,7 @@ static void ams_delta_write_buf(struct mtd_info *mtd, const 
u_char *buf,
 {
        int i;
 
-       for (i=0; i<len; i++)
+       for (i = 0; i < len; i++)
                ams_delta_write_byte(mtd, buf[i]);
 }
 
@@ -102,7 +102,7 @@ static void ams_delta_read_buf(struct mtd_info *mtd, u_char 
*buf, int len)
 {
        int i;
 
-       for (i=0; i<len; i++)
+       for (i = 0; i < len; i++)
                buf[i] = ams_delta_read_byte(mtd);
 }
 
-- 
2.7.4

Reply via email to