diff options
author | Simon Horman <horms@verge.net.au> | 2011-03-24 08:04:37 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-03-24 17:24:57 +0100 |
commit | a6558c2d07d5c955fbb0290f68c27164a5567b9a (patch) | |
tree | dc01b3f881dfab39186e1146bfe4ffd9556aaf73 /arch/arm/mach-shmobile/include/mach/mmc.h | |
parent | ARM: mach-shmobile: add coherent DMA mask to CEU camera devices (diff) | |
download | linux-a6558c2d07d5c955fbb0290f68c27164a5567b9a.tar.xz linux-a6558c2d07d5c955fbb0290f68c27164a5567b9a.zip |
mmc, ARM: Rename SuperH Mobile ARM zboot helpers
These headers and helpers will also be used for SDHI boot
so the mmcif name will start to make a lot less sense.
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/include/mach/mmc.h')
-rw-r--r-- | arch/arm/mach-shmobile/include/mach/mmc.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/include/mach/mmc.h b/arch/arm/mach-shmobile/include/mach/mmc.h new file mode 100644 index 000000000000..e11560a525a1 --- /dev/null +++ b/arch/arm/mach-shmobile/include/mach/mmc.h @@ -0,0 +1,18 @@ +#ifndef MMC_H +#define MMC_H + +/************************************************** + * + * board specific settings + * + **************************************************/ + +#ifdef CONFIG_MACH_AP4EVB +#include "mach/mmc-ap4eb.h" +#elif CONFIG_MACH_MACKEREL +#include "mach/mmc-mackerel.h" +#else +#error "unsupported board." +#endif + +#endif /* MMC_H */ |