mtd: OneNAND: S5PC100: Only S5PC110 use the command map method

After S5PC110 use the generic method for OneNAND.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
Kyungmin Park 2010-09-28 19:27:00 +09:00 committed by David Woodhouse
parent c76268021e
commit aa6d1c0e15

View File

@ -58,7 +58,7 @@ enum soc_type {
#define MAP_11 (0x3) #define MAP_11 (0x3)
#define S3C64XX_CMD_MAP_SHIFT 24 #define S3C64XX_CMD_MAP_SHIFT 24
#define S5PC1XX_CMD_MAP_SHIFT 26 #define S5PC100_CMD_MAP_SHIFT 26
#define S3C6400_FBA_SHIFT 10 #define S3C6400_FBA_SHIFT 10
#define S3C6400_FPA_SHIFT 4 #define S3C6400_FPA_SHIFT 4
@ -191,7 +191,7 @@ static unsigned int s3c64xx_cmd_map(unsigned type, unsigned val)
static unsigned int s5pc1xx_cmd_map(unsigned type, unsigned val) static unsigned int s5pc1xx_cmd_map(unsigned type, unsigned val)
{ {
return (type << S5PC1XX_CMD_MAP_SHIFT) | val; return (type << S5PC100_CMD_MAP_SHIFT) | val;
} }
static unsigned int s3c6400_mem_addr(int fba, int fpa, int fsa) static unsigned int s3c6400_mem_addr(int fba, int fpa, int fsa)