diff options
author | 2016-11-18 13:36:16 +0100 | |
---|---|---|
committer | 2016-11-29 09:05:04 +0100 | |
commit | e01071dd2bfc73d88b63aeec26bff8eb872b1dc9 (patch) | |
tree | bd9cf23e75a554031d572669e4a7327aff4de797 /drivers/mmc/card/queue.h | |
parent | mmc: block: rename data to blkdata (diff) | |
download | linux-dev-e01071dd2bfc73d88b63aeec26bff8eb872b1dc9.tar.xz linux-dev-e01071dd2bfc73d88b63aeec26bff8eb872b1dc9.zip |
mmc: block: move packed command struct init
By moving the mmc_packed_init() and mmc_packed_clean() into the
only file in the kernel where they are used, we save two exported
functions and can staticize those to the block.c file.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/mmc/card/queue.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mmc/card/queue.h b/drivers/mmc/card/queue.h index aca285046576..334c9306070f 100644 --- a/drivers/mmc/card/queue.h +++ b/drivers/mmc/card/queue.h @@ -76,9 +76,6 @@ extern unsigned int mmc_queue_map_sg(struct mmc_queue *, extern void mmc_queue_bounce_pre(struct mmc_queue_req *); extern void mmc_queue_bounce_post(struct mmc_queue_req *); -extern int mmc_packed_init(struct mmc_queue *, struct mmc_card *); -extern void mmc_packed_clean(struct mmc_queue *); - extern int mmc_access_rpmb(struct mmc_queue *); #endif |