[MTD] plat-ram: Make it usable on non ARM platforms
authorThomas Gleixner <tglx@linutronix.de>
Sat, 19 Mar 2005 22:41:30 +0000 (22:41 +0000)
committerThomas Gleixner <tglx@mtd.linutronix.de>
Mon, 23 May 2005 11:00:41 +0000 (13:00 +0200)
Use memset instead of ARM only memzero function

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
drivers/mtd/maps/plat-ram.c

index f7e6dad..118b045 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Generic platfrom device based RAM map
  *
- * $Id: plat-ram.c,v 1.2 2005/03/14 20:33:19 bjd Exp $
+ * $Id: plat-ram.c,v 1.3 2005/03/19 22:41:27 gleixner Exp $
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -153,7 +153,7 @@ static int platram_probe(struct device *dev)
                goto exit_error;
        }
 
-       memzero(info, sizeof(*info));
+       memset(info, 0, sizeof(*info));
        dev_set_drvdata(dev, info);
 
        info->dev = dev;