applied patch 13-sparse-fix--make-some-symbol-static.diff
[yaffs2.git] / mtdemul / nandemul2k.c
index ecc96c8e7900ae6aa0fc180debf7694eb956d74e..eef68dd6d30d54574db699541133dd1ac131a204 100644 (file)
@@ -253,7 +253,7 @@ int nandemul2k_GetNumberOfBlocks(void) {return nandemul2k_CalcNBlocks();}
 
 
 
-int nandemul2k_ReadId(__u8 *vendorId, __u8 *deviceId)
+static int nandemul2k_ReadId(__u8 *vendorId, __u8 *deviceId)
 {
        *vendorId = 'Y'; 
        *deviceId = '2';
@@ -262,7 +262,7 @@ int nandemul2k_ReadId(__u8 *vendorId, __u8 *deviceId)
 }
 
 
-int nandemul2k_ReadStatus(__u8 *status)
+static int nandemul2k_ReadStatus(__u8 *status)
 {
                *status = 0;
                return 1;
@@ -597,7 +597,7 @@ static void nand_sync (struct mtd_info *mtd)
 /*
  * Scan for the NAND device
  */
-int nand_scan (struct mtd_info *mtd,int nchips)
+static int nandemul2k_scan (struct mtd_info *mtd,int nchips)
 {
        mtd->oobblock = PAGE_DATA_SIZE;
        mtd->oobsize =  PAGE_SPARE_SIZE;
@@ -630,6 +630,8 @@ int nand_scan (struct mtd_info *mtd,int nchips)
        mtd->suspend = NULL;
        mtd->resume = NULL;
 
+       mtd->name = "NANDemul2k";
+
        /* Return happy */
        return 0;
 }
@@ -648,9 +650,9 @@ __setup("sizeInMB=",sizeInMB);
 
 static struct mtd_partition nandemul2k_partition[] =
 {
-       { name: "NANDemul partition 1",
-         offset:  0,
-         size: 0 },
+       { .name         = "NANDemul partition 1",
+         .offset       = 0,
+         .size         = 0 },
 };
 
 static int nPartitions = sizeof(nandemul2k_partition)/sizeof(nandemul2k_partition[0]);
@@ -665,7 +667,7 @@ int __init nandemul2k_init (void)
        
        CheckInit();
 
-       nand_scan(&nandemul2k_mtd,1);
+       nandemul2k_scan(&nandemul2k_mtd,1);
 
        // Build the partition table