mmc: Improve tinification
authorMarek Vasut <marek.vasut@gmail.com>
Sat, 14 Apr 2018 22:37:11 +0000 (00:37 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 13 May 2018 11:57:32 +0000 (07:57 -0400)
commit62d77cea31216cad526e5f45c88e8377efc6fcae
tree1a58e37a02b40d04b4a917ae78068dd74e5d6ffd
parent9a66328a37e3b31dbe646ef3668b60466e8abd9a
mmc: Improve tinification

Drop all the extra content from the MMC core, so that tiny MMC support
is really tiny, no fancy anything. That means the tiny MMC support does
only 1-bit transfers at default speed settings. Moreover, this patch
drops duplicate instance of struct mmc mmc_static, which wasted about
360 bytes. Furthermore, since MMC tiny supports only one controller
at all times, get rid of mallocating the ext csd backup and replace
it with static array. All in all, this patch saves ~4 kiB of bloat
from the MMC core, which on platforms with severe limitations can be
beneficial.

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
[trini: Fixup checkpatch.pl style warnings]
Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/mmc/mmc.c
drivers/mmc/mmc_legacy.c