From fc4c714523547d033a8eff2b6748492908887faa Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 18 Apr 2013 16:12:37 -0600 Subject: [PATCH] Add support for the FM25V01 part --- drivers/mtd/ramtron.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/ramtron.c b/drivers/mtd/ramtron.c index 34273bccfc8..71e07693468 100644 --- a/drivers/mtd/ramtron.c +++ b/drivers/mtd/ramtron.c @@ -3,7 +3,7 @@ * Driver for SPI-based RAMTRON NVRAM Devices FM25V10 and others (not tested) * * Copyright (C) 2011 Uros Platise. All rights reserved. - * Copyright (C) 2009-2010, 2012 Gregory Nutt. All rights reserved. + * Copyright (C) 2009-2010, 2012-2013 Gregory Nutt. All rights reserved. * Author: Uros Platise * Gregory Nutt * @@ -161,6 +161,14 @@ struct ramtron_dev_s static struct ramtron_parts_s ramtron_parts[] = { + { + "FM25V01", /* name */ + 0x21, /* id1 */ + 0x00, /* id2 */ + 16L*1024L, /* size */ + 2, /* addr_len */ + 40000000 /* speed */ + }, { "FM25V02", /* name */ 0x22, /* id1 */