]> Pileus Git - ~andy/linux/commitdiff
mtd: nandsim: use prandom_bytes
authorAkinobu Mita <akinobu.mita@gmail.com>
Tue, 18 Dec 2012 00:04:32 +0000 (16:04 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 18 Dec 2012 01:15:26 +0000 (17:15 -0800)
This also removes unnecessary memset call which is immediately overwritten
with random bytes.

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Artem Bityutskiy <dedekind1@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: "Theodore Ts'o" <tytso@mit.edu>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Laight <david.laight@aculab.com>
Cc: Eilon Greenstein <eilong@broadcom.com>
Cc: Michel Lespinasse <walken@google.com>
Cc: Robert Love <robert.w.love@intel.com>
Cc: Valdis Kletnieks <valdis.kletnieks@vt.edu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/mtd/nand/nandsim.c

index a932c485eb04f9c7b40c14c924c7aa172be71244..c3c13e64a2f0c55117397ba9436ea35946669fd4 100644 (file)
@@ -1397,10 +1397,7 @@ int do_read_error(struct nandsim *ns, int num)
        unsigned int page_no = ns->regs.row;
 
        if (read_error(page_no)) {
-               int i;
-               memset(ns->buf.byte, 0xFF, num);
-               for (i = 0; i < num; ++i)
-                       ns->buf.byte[i] = random32();
+               prandom_bytes(ns->buf.byte, num);
                NS_WARN("simulating read error in page %u\n", page_no);
                return 1;
        }