forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'mtd/fixes-for-5.2-final' of git://git.kernel.org/pub/scm/l…
…inux/kernel/git/mtd/linux Pull mtf fixes from Miquel Raynal: - Fix the memory organization structure of a Macronix SPI-NAND chip. - Fix a build dependency wrongly described. - Fix the sunxi NAND driver for A23/A33 SoCs by (a) reverting the faulty commit introducing broken DMA support and (b) applying another commit bringing working DMA support. * tag 'mtd/fixes-for-5.2-final' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: mtd: rawnand: sunxi: Add A23/A33 DMA support with extra MBUS configuration Revert "mtd: rawnand: sunxi: Add A23/A33 DMA support" mtd: rawnand: ingenic: Fix ingenic_ecc dependency mtd: spinand: Fix max_bad_eraseblocks_per_lun info in memorg
- Loading branch information
Showing
7 changed files
with
22 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ int ingenic_ecc_calculate(struct ingenic_ecc *ecc, | |
{ | ||
return ecc->ops->calculate(ecc, params, buf, ecc_code); | ||
} | ||
EXPORT_SYMBOL(ingenic_ecc_calculate); | ||
|
||
/** | ||
* ingenic_ecc_correct() - detect and correct bit errors | ||
|
@@ -51,7 +50,6 @@ int ingenic_ecc_correct(struct ingenic_ecc *ecc, | |
{ | ||
return ecc->ops->correct(ecc, params, buf, ecc_code); | ||
} | ||
EXPORT_SYMBOL(ingenic_ecc_correct); | ||
|
||
/** | ||
* ingenic_ecc_get() - get the ECC controller device | ||
|
@@ -111,7 +109,6 @@ struct ingenic_ecc *of_ingenic_ecc_get(struct device_node *of_node) | |
} | ||
return ecc; | ||
} | ||
EXPORT_SYMBOL(of_ingenic_ecc_get); | ||
|
||
/** | ||
* ingenic_ecc_release() - release the ECC controller device | ||
|
@@ -122,7 +119,6 @@ void ingenic_ecc_release(struct ingenic_ecc *ecc) | |
clk_disable_unprepare(ecc->clk); | ||
put_device(ecc->dev); | ||
} | ||
EXPORT_SYMBOL(ingenic_ecc_release); | ||
|
||
int ingenic_ecc_probe(struct platform_device *pdev) | ||
{ | ||
|
@@ -159,8 +155,3 @@ int ingenic_ecc_probe(struct platform_device *pdev) | |
return 0; | ||
} | ||
EXPORT_SYMBOL(ingenic_ecc_probe); | ||
|
||
MODULE_AUTHOR("Alex Smith <[email protected]>"); | ||
MODULE_AUTHOR("Harvey Hunt <[email protected]>"); | ||
MODULE_DESCRIPTION("Ingenic ECC common driver"); | ||
MODULE_LICENSE("GPL v2"); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters