Make private the nand_scan() function defined in nandemul2k.c.
authorluc <luc>
Fri, 29 Jul 2005 20:21:28 +0000 (20:21 +0000)
committerluc <luc>
Fri, 29 Jul 2005 20:21:28 +0000 (20:21 +0000)
It clash with the one from MTD and make it impossible to statically compile this code in the kernel together with MTD (and will also make problems with modules).

mtdemul/nandemul2k.c

index ecc96c8e7900ae6aa0fc180debf7694eb956d74e..15213abfa90c24ac207152ff4c3989a221cc502a 100644 (file)
@@ -597,7 +597,7 @@ static void nand_sync (struct mtd_info *mtd)
 /*
  * Scan for the NAND device
  */
 /*
  * 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;
 {
        mtd->oobblock = PAGE_DATA_SIZE;
        mtd->oobsize =  PAGE_SPARE_SIZE;
@@ -665,7 +665,7 @@ int __init nandemul2k_init (void)
        
        CheckInit();
 
        
        CheckInit();
 
-       nand_scan(&nandemul2k_mtd,1);
+       nandemul2k_scan(&nandemul2k_mtd,1);
 
        // Build the partition table
 
 
        // Build the partition table