sdhci-pltfm.h 775 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Platform data declarations for the sdhci-pltfm driver.
  3. *
  4. * Copyright (c) 2010 MontaVista Software, LLC.
  5. *
  6. * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at
  11. * your option) any later version.
  12. */
  13. #ifndef _SDHCI_PLTFM_H
  14. #define _SDHCI_PLTFM_H
  15. struct sdhci_ops;
  16. /**
  17. * struct sdhci_pltfm_data - SDHCI platform-specific information & hooks
  18. * @ops: optional pointer to the platform-provided SDHCI ops
  19. * @quirks: optional SDHCI quirks
  20. */
  21. struct sdhci_pltfm_data {
  22. struct sdhci_ops *ops;
  23. unsigned int quirks;
  24. };
  25. #endif /* _SDHCI_PLTFM_H */