summaryrefslogtreecommitdiff
path: root/drivers/mmc/core/quirks.h
diff options
context:
space:
mode:
authorH. Nikolaus Schaller <hns@goldelico.com>2021-11-10 20:17:08 +0300
committerUlf Hansson <ulf.hansson@linaro.org>2021-12-14 23:35:23 +0300
commit818cd40529d9f19aa7ca3794f73477b5ac3ef350 (patch)
treed456ff93fafe42ff4cef46b355a04c019e83e809 /drivers/mmc/core/quirks.h
parentb360b11026705369f7ea51653f75dbe611322338 (diff)
downloadlinux-818cd40529d9f19aa7ca3794f73477b5ac3ef350.tar.xz
mmc: core: provide macro and table to match the device tree to apply quirks
This (initially empty) table allows to match quirks early based on .compatible of the child node of some mmc/sdio interface. This allows to add quirks based on device tree instead of having card specific code in the host ops. A new macro SDIO_FIXUP_COMPATIBLE makes the definition readable. And we call mmc_fixup_device(sdio_card_init_methods) just after where host->ops->init_card() can be optionally called. Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com> Link: https://lore.kernel.org/r/b13fd8b3eebc3c23b6816b254a518c224cbdcfd4.1636564631.git.hns@goldelico.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core/quirks.h')
-rw-r--r--drivers/mmc/core/quirks.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/core/quirks.h b/drivers/mmc/core/quirks.h
index 4a767f2fbaaa..a23df65332cd 100644
--- a/drivers/mmc/core/quirks.h
+++ b/drivers/mmc/core/quirks.h
@@ -146,6 +146,10 @@ static const struct mmc_fixup __maybe_unused sdio_fixup_methods[] = {
END_FIXUP
};
+static const struct mmc_fixup __maybe_unused sdio_card_init_methods[] = {
+ END_FIXUP
+};
+
static inline bool mmc_fixup_of_compatible_match(struct mmc_card *card,
const char *compatible)
{