diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2006-06-30 02:22:31 -0700 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-07-02 16:54:59 +0100 |
commit | df673b227ce08a7706b30fd2bf6512393d9c3c29 (patch) | |
tree | 026fb02f088a922b1a7b5c2b984e779df266625f /drivers/mmc/sdhci.h | |
parent | 6743527441430586aa82a0dee1b2700a2a974ebc (diff) | |
download | op-kernel-dev-df673b227ce08a7706b30fd2bf6512393d9c3c29.zip op-kernel-dev-df673b227ce08a7706b30fd2bf6512393d9c3c29.tar.gz |
[MMC] sdhci: support controller specific quirks
As some specific controllers will have bugs, we need a way to map special
behaviour to certain hardware.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/mmc/sdhci.h')
-rw-r--r-- | drivers/mmc/sdhci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/sdhci.h b/drivers/mmc/sdhci.h index 8111fa3..f245334 100644 --- a/drivers/mmc/sdhci.h +++ b/drivers/mmc/sdhci.h @@ -204,6 +204,8 @@ struct sdhci_host { struct sdhci_chip { struct pci_dev *pdev; + unsigned long quirks; + int num_slots; /* Slots on controller */ struct sdhci_host *hosts[0]; /* Pointers to hosts */ }; |