mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-08 15:33:47 +00:00
mmc: tmio: eliminate unused variable 'mmc' warning
Fix below compile warning: CC drivers/mmc/host/tmio_mmc.o drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_suspend': drivers/mmc/host/tmio_mmc.c:30: warning: unused variable 'mmc' drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_resume': drivers/mmc/host/tmio_mmc.c:45: warning: unused variable 'mmc' Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
0d58864bf3
commit
4906baf080
1 changed files with 0 additions and 2 deletions
|
@ -27,7 +27,6 @@
|
||||||
static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
|
static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
|
||||||
{
|
{
|
||||||
const struct mfd_cell *cell = mfd_get_cell(dev);
|
const struct mfd_cell *cell = mfd_get_cell(dev);
|
||||||
struct mmc_host *mmc = platform_get_drvdata(dev);
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = tmio_mmc_host_suspend(&dev->dev);
|
ret = tmio_mmc_host_suspend(&dev->dev);
|
||||||
|
@ -42,7 +41,6 @@ static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
|
||||||
static int tmio_mmc_resume(struct platform_device *dev)
|
static int tmio_mmc_resume(struct platform_device *dev)
|
||||||
{
|
{
|
||||||
const struct mfd_cell *cell = mfd_get_cell(dev);
|
const struct mfd_cell *cell = mfd_get_cell(dev);
|
||||||
struct mmc_host *mmc = platform_get_drvdata(dev);
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
/* Tell the MFD core we are ready to be enabled */
|
/* Tell the MFD core we are ready to be enabled */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue