mtd: cfi_util: use DIV_ROUND_UP() in cfi_udelay()
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Fri, 27 Sep 2019 20:22:32 +0000 (23:22 +0300)
committerVignesh Raghavendra <vigneshr@ti.com>
Sat, 9 Nov 2019 09:10:48 +0000 (14:40 +0530)
commitd532c28b8c151cdb5b50280801c748ac4d93d563
tree09b8c8a93af3559894368acfdb50171c67432476
parent54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c
mtd: cfi_util: use DIV_ROUND_UP() in cfi_udelay()

Use DIV_ROUND_UP() in cfi_udelay() instead of open-coding it...

Doing this also helpfully gets rid of two complaints from
'scripts/checkpatch.pl --strict':

CHECK: spaces preferred around that '+' (ctx:VxV)
#29: FILE: drivers/mtd/chips/cfi_util.c:29:
+ msleep((us+999)/1000);
            ^

CHECK: spaces preferred around that '/' (ctx:VxV)
#29: FILE: drivers/mtd/chips/cfi_util.c:29:
+ msleep((us+999)/1000);
       ^

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
drivers/mtd/chips/cfi_util.c