Skip to content

Commit d255c59

Browse files
committed
Merge tag 'for-linus-20131025' of git://git.infradead.org/linux-mtd
Pull final mtd fixes from Brian Norris: "A few more last-minute regression fixes, prepared jointly by me and David Woodhouse: - Revert pxa3xx to its old name to avoid breaking existing 'mtdparts=' boot strings. - Return GPMI NAND to its legacy ECC layout for backwards compatibility. We will revisit this in 3.13. A note from David on the latter fix: 'This leaves a harmless cosmetic warning about an unused function. At this point in the cycle I really don't care.'" * tag 'for-linus-20131025' of git://git.infradead.org/linux-mtd: mtd: gpmi: fix ECC regression mtd: nand: pxa3xx: Fix registered MTD name
2 parents f55ac56 + 031e277 commit d255c59

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

drivers/mtd/nand/gpmi-nand/gpmi-nand.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ static int legacy_set_geometry(struct gpmi_nand_data *this)
349349

350350
int common_nfc_set_geometry(struct gpmi_nand_data *this)
351351
{
352-
return set_geometry_by_ecc_info(this) ? 0 : legacy_set_geometry(this);
352+
return legacy_set_geometry(this);
353353
}
354354

355355
struct dma_chan *get_dma_chan(struct gpmi_nand_data *this)

drivers/mtd/nand/pxa3xx_nand.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,12 @@ static int pxa3xx_nand_probe(struct platform_device *pdev)
13201320
for (cs = 0; cs < pdata->num_cs; cs++) {
13211321
struct mtd_info *mtd = info->host[cs]->mtd;
13221322

1323-
mtd->name = pdev->name;
1323+
/*
1324+
* The mtd name matches the one used in 'mtdparts' kernel
1325+
* parameter. This name cannot be changed or otherwise
1326+
* user's mtd partitions configuration would get broken.
1327+
*/
1328+
mtd->name = "pxa3xx_nand-0";
13241329
info->cs = cs;
13251330
ret = pxa3xx_nand_scan(mtd);
13261331
if (ret) {

0 commit comments

Comments
 (0)