aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sdhci-pltfm.h
diff options
context:
space:
mode:
authorWolfram Sang <w.sang@pengutronix.de>2010-10-15 12:21:00 +0200
committerChris Ball <cjb@laptop.org>2010-10-23 21:11:21 +0800
commitd3b993dcc11cd291e6908ed02b9db99970220952 (patch)
tree4fc492cc5eaec03491702c5d4329ea43c6911f55 /include/linux/sdhci-pltfm.h
parent4b711cb13843f5082e82970dd1e8031383134a65 (diff)
downloadkernel_samsung_espresso10-d3b993dcc11cd291e6908ed02b9db99970220952.zip
kernel_samsung_espresso10-d3b993dcc11cd291e6908ed02b9db99970220952.tar.gz
kernel_samsung_espresso10-d3b993dcc11cd291e6908ed02b9db99970220952.tar.bz2
mmc: sdhci-pltfm: move .h file into appropriate subdir
Make use of the include/linux/mmc directory. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Acked-by: Anton Vorontsov <cbouatmailru@gmail.com> Tested-by: Eric BĂ©nard <eric@eukrea.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include/linux/sdhci-pltfm.h')
-rw-r--r--include/linux/sdhci-pltfm.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/linux/sdhci-pltfm.h b/include/linux/sdhci-pltfm.h
deleted file mode 100644
index 0239bd7..0000000
--- a/include/linux/sdhci-pltfm.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Platform data declarations for the sdhci-pltfm driver.
- *
- * Copyright (c) 2010 MontaVista Software, LLC.
- *
- * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- */
-
-#ifndef _SDHCI_PLTFM_H
-#define _SDHCI_PLTFM_H
-
-struct sdhci_ops;
-struct sdhci_host;
-
-/**
- * struct sdhci_pltfm_data - SDHCI platform-specific information & hooks
- * @ops: optional pointer to the platform-provided SDHCI ops
- * @quirks: optional SDHCI quirks
- * @init: optional hook that is called during device probe, before the
- * driver tries to access any SDHCI registers
- * @exit: optional hook that is called during device removal
- */
-struct sdhci_pltfm_data {
- struct sdhci_ops *ops;
- unsigned int quirks;
- int (*init)(struct sdhci_host *host);
- void (*exit)(struct sdhci_host *host);
-};
-
-#endif /* _SDHCI_PLTFM_H */