public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] CFI: remove major/minor version check for command set 0x0002
@ 2009-01-08 16:07 Wolfgang Grandegger
  2009-01-08 16:47 ` Nicolas Pitre
  0 siblings, 1 reply; 8+ messages in thread
From: Wolfgang Grandegger @ 2009-01-08 16:07 UTC (permalink / raw)
  To: linux-mtd; +Cc: David Woodhouse

The NOR Flash memory K8P2815UQB from Samsung uses the major version
number '0', which seems to be unusual but not illegal, IIUC. This
patch removes the major-minor version check to get this Flash memory
supported as well.

Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
---
 drivers/mtd/chips/cfi_cmdset_0002.c |   10 ----------
 1 file changed, 10 deletions(-)

Index: linux-2.6/drivers/mtd/chips/cfi_cmdset_0002.c
===================================================================
--- linux-2.6.orig/drivers/mtd/chips/cfi_cmdset_0002.c
+++ linux-2.6/drivers/mtd/chips/cfi_cmdset_0002.c
@@ -363,16 +363,6 @@ struct mtd_info *cfi_cmdset_0002(struct 
 			return NULL;
 		}
 
-		if (extp->MajorVersion != '1' ||
-		    (extp->MinorVersion < '0' || extp->MinorVersion > '4')) {
-			printk(KERN_ERR "  Unknown Amd/Fujitsu Extended Query "
-			       "version %c.%c.\n",  extp->MajorVersion,
-			       extp->MinorVersion);
-			kfree(extp);
-			kfree(mtd);
-			return NULL;
-		}
-
 		/* Install our own private info structure */
 		cfi->cmdset_priv = extp;
 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-01-09 13:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-08 16:07 [PATCH] CFI: remove major/minor version check for command set 0x0002 Wolfgang Grandegger
2009-01-08 16:47 ` Nicolas Pitre
2009-01-08 16:48   ` David Woodhouse
2009-01-08 16:59     ` Wolfgang Grandegger
2009-01-08 17:42       ` Nicolas Pitre
2009-01-08 18:21         ` Wolfgang Grandegger
2009-01-08 18:33           ` Nicolas Pitre
2009-01-09 13:04             ` Wolfgang Grandegger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox