diff mbox series

mmc: test: remove the shutdown function

Message ID 20210119051425.305-1-zbestahu@gmail.com
State New
Headers show
Series mmc: test: remove the shutdown function | expand

Commit Message

Yue Hu Jan. 19, 2021, 5:14 a.m. UTC
From: Yue Hu <huyue2@yulong.com>

Since it's doing nothing for shutdown behavior. And the callback will
be checked firstly in mmc_bus_shutdown().

Signed-off-by: Yue Hu <huyue2@yulong.com>
---
 drivers/mmc/core/mmc_test.c | 5 -----
 1 file changed, 5 deletions(-)

Comments

Ulf Hansson Jan. 20, 2021, 2:07 p.m. UTC | #1
On Tue, 19 Jan 2021 at 06:14, Yue Hu <zbestahu@gmail.com> wrote:
>

> From: Yue Hu <huyue2@yulong.com>

>

> Since it's doing nothing for shutdown behavior. And the callback will

> be checked firstly in mmc_bus_shutdown().

>

> Signed-off-by: Yue Hu <huyue2@yulong.com>


Applied for next, thanks!

Kind regards
Uffe


> ---

>  drivers/mmc/core/mmc_test.c | 5 -----

>  1 file changed, 5 deletions(-)

>

> diff --git a/drivers/mmc/core/mmc_test.c b/drivers/mmc/core/mmc_test.c

> index 152e752..f999b48 100644

> --- a/drivers/mmc/core/mmc_test.c

> +++ b/drivers/mmc/core/mmc_test.c

> @@ -3267,17 +3267,12 @@ static void mmc_test_remove(struct mmc_card *card)

>         mmc_test_free_dbgfs_file(card);

>  }

>

> -static void mmc_test_shutdown(struct mmc_card *card)

> -{

> -}

> -

>  static struct mmc_driver mmc_driver = {

>         .drv            = {

>                 .name   = "mmc_test",

>         },

>         .probe          = mmc_test_probe,

>         .remove         = mmc_test_remove,

> -       .shutdown       = mmc_test_shutdown,

>  };

>

>  static int __init mmc_test_init(void)

> --

> 1.9.1

>
diff mbox series

Patch

diff --git a/drivers/mmc/core/mmc_test.c b/drivers/mmc/core/mmc_test.c
index 152e752..f999b48 100644
--- a/drivers/mmc/core/mmc_test.c
+++ b/drivers/mmc/core/mmc_test.c
@@ -3267,17 +3267,12 @@  static void mmc_test_remove(struct mmc_card *card)
 	mmc_test_free_dbgfs_file(card);
 }
 
-static void mmc_test_shutdown(struct mmc_card *card)
-{
-}
-
 static struct mmc_driver mmc_driver = {
 	.drv		= {
 		.name	= "mmc_test",
 	},
 	.probe		= mmc_test_probe,
 	.remove		= mmc_test_remove,
-	.shutdown	= mmc_test_shutdown,
 };
 
 static int __init mmc_test_init(void)