aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2013-02-04 02:23:08 -0500
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2013-02-04 04:17:05 -0500
commitf1a7c9d350339e8a81cda9469ba9a591fb9c9a3b (patch)
treef8ad98a76fdf409aa7de0180afeab279d9aed7ec /drivers/mtd
parentbe3781b71ac03723b552dc156931620634ef1b22 (diff)
mtd: bcm47xxsflash: adjust names of bus-specific functions
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/devices/bcm47xxsflash.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/drivers/mtd/devices/bcm47xxsflash.c b/drivers/mtd/devices/bcm47xxsflash.c
index 729ca5fb53ed..95266285acb1 100644
--- a/drivers/mtd/devices/bcm47xxsflash.c
+++ b/drivers/mtd/devices/bcm47xxsflash.c
@@ -44,7 +44,11 @@ static void bcm47xxsflash_fill_mtd(struct bcm47xxsflash *b47s)
44 mtd->writebufsize = mtd->writesize = 1; 44 mtd->writebufsize = mtd->writesize = 1;
45} 45}
46 46
47static int bcm47xxsflash_probe(struct platform_device *pdev) 47/**************************************************
48 * BCMA
49 **************************************************/
50
51static int bcm47xxsflash_bcma_probe(struct platform_device *pdev)
48{ 52{
49 struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev); 53 struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev);
50 struct bcm47xxsflash *b47s; 54 struct bcm47xxsflash *b47s;
@@ -77,7 +81,7 @@ out:
77 return err; 81 return err;
78} 82}
79 83
80static int bcm47xxsflash_remove(struct platform_device *pdev) 84static int bcm47xxsflash_bcma_remove(struct platform_device *pdev)
81{ 85{
82 struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev); 86 struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev);
83 struct bcm47xxsflash *b47s = sflash->priv; 87 struct bcm47xxsflash *b47s = sflash->priv;
@@ -89,14 +93,18 @@ static int bcm47xxsflash_remove(struct platform_device *pdev)
89} 93}
90 94
91static struct platform_driver bcma_sflash_driver = { 95static struct platform_driver bcma_sflash_driver = {
92 .probe = bcm47xxsflash_probe, 96 .probe = bcm47xxsflash_bcma_probe,
93 .remove = bcm47xxsflash_remove, 97 .remove = bcm47xxsflash_bcma_remove,
94 .driver = { 98 .driver = {
95 .name = "bcma_sflash", 99 .name = "bcma_sflash",
96 .owner = THIS_MODULE, 100 .owner = THIS_MODULE,
97 }, 101 },
98}; 102};
99 103
104/**************************************************
105 * Init
106 **************************************************/
107
100static int __init bcm47xxsflash_init(void) 108static int __init bcm47xxsflash_init(void)
101{ 109{
102 int err; 110 int err;