]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mmc: core: Remove struct mmc_context_info
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 21 Aug 2024 13:24:06 +0000 (15:24 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 26 Aug 2024 11:20:10 +0000 (13:20 +0200)
The 'mmc_context_info' structure is unused.

It has been introduced in:

  - commit 2220eedfd7ae ("mmc: fix async request mechanism for sequential
    read scenarios")

in 2013-02 and its usages have been removed in:

  - commit 126b62700386 ("mmc: core: Remove code no longer needed after the
    switch to blk-mq")
  - commit 0fbfd1251830 ("mmc: block: Remove code no longer needed after
    the switch to blk-mq")

in 2017-12.

Now remove this unused structure.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Vladimir Zapolskiy <vz@mleia.com>
Link: https://lore.kernel.org/r/232106a8a6a374dee25feea9b94498361568c10b.1724246389.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
include/linux/mmc/host.h

index 88c6a76042ee73ccbbb9dba4205d55b7a92ba8c1..f85df7d045ca56bdda6e508b13a3cb4fa324eacc 100644 (file)
@@ -291,20 +291,6 @@ struct mmc_slot {
        void *handler_priv;
 };
 
-/**
- * mmc_context_info - synchronization details for mmc context
- * @is_done_rcv                wake up reason was done request
- * @is_new_req         wake up reason was new request
- * @is_waiting_last_req        mmc context waiting for single running request
- * @wait               wait queue
- */
-struct mmc_context_info {
-       bool                    is_done_rcv;
-       bool                    is_new_req;
-       bool                    is_waiting_last_req;
-       wait_queue_head_t       wait;
-};
-
 struct regulator;
 struct mmc_pwrseq;