aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/tmio_mmc.c
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@queued.net>2011-03-01 15:32:20 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2011-03-23 05:42:01 -0400
commit944dc03551f6e812c00e586edba84b28c52ffe8c (patch)
tree18bbcdc2c9ccc6a05d217503e28a77efea662b63 /drivers/mmc/host/tmio_mmc.c
parent93619c2106e2c968a260ebffb75ddc5efa567c16 (diff)
tmio: Silence warnings introduced by mfd changes
This silences warnings such as drivers/video/tmiofb.c: In function 'tmiofb_hw_init': drivers/video/tmiofb.c:270: warning: initialization discards qualifiers from pointer target type These were added by me in commit 2a79bb1d. Signed-off-by: Andres Salomon <dilinger@queued.net> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mmc/host/tmio_mmc.c')
-rw-r--r--drivers/mmc/host/tmio_mmc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c
index f8cb06b8ed6..ab1adeabdd2 100644
--- a/drivers/mmc/host/tmio_mmc.c
+++ b/drivers/mmc/host/tmio_mmc.c
@@ -1191,7 +1191,7 @@ static const struct mmc_host_ops tmio_mmc_ops = {
1191#ifdef CONFIG_PM 1191#ifdef CONFIG_PM
1192static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state) 1192static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
1193{ 1193{
1194 struct mfd_cell *cell = mfd_get_cell(dev); 1194 const struct mfd_cell *cell = mfd_get_cell(dev);
1195 struct mmc_host *mmc = platform_get_drvdata(dev); 1195 struct mmc_host *mmc = platform_get_drvdata(dev);
1196 int ret; 1196 int ret;
1197 1197
@@ -1206,7 +1206,7 @@ static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
1206 1206
1207static int tmio_mmc_resume(struct platform_device *dev) 1207static int tmio_mmc_resume(struct platform_device *dev)
1208{ 1208{
1209 struct mfd_cell *cell = mfd_get_cell(dev); 1209 const struct mfd_cell *cell = mfd_get_cell(dev);
1210 struct mmc_host *mmc = platform_get_drvdata(dev); 1210 struct mmc_host *mmc = platform_get_drvdata(dev);
1211 int ret = 0; 1211 int ret = 0;
1212 1212
@@ -1229,7 +1229,7 @@ out:
1229 1229
1230static int __devinit tmio_mmc_probe(struct platform_device *dev) 1230static int __devinit tmio_mmc_probe(struct platform_device *dev)
1231{ 1231{
1232 struct mfd_cell *cell = mfd_get_cell(dev); 1232 const struct mfd_cell *cell = mfd_get_cell(dev);
1233 struct tmio_mmc_data *pdata; 1233 struct tmio_mmc_data *pdata;
1234 struct resource *res_ctl; 1234 struct resource *res_ctl;
1235 struct tmio_mmc_host *host; 1235 struct tmio_mmc_host *host;
@@ -1344,7 +1344,7 @@ out:
1344 1344
1345static int __devexit tmio_mmc_remove(struct platform_device *dev) 1345static int __devexit tmio_mmc_remove(struct platform_device *dev)
1346{ 1346{
1347 struct mfd_cell *cell = mfd_get_cell(dev); 1347 const struct mfd_cell *cell = mfd_get_cell(dev);
1348 struct mmc_host *mmc = platform_get_drvdata(dev); 1348 struct mmc_host *mmc = platform_get_drvdata(dev);
1349 1349
1350 platform_set_drvdata(dev, NULL); 1350 platform_set_drvdata(dev, NULL);