diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2014-10-17 10:26:36 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-11-10 12:40:37 +0100 |
commit | 9cbef73cb657ff795c130cccfed251f0ae923abb (patch) | |
tree | aac1af3d851961cf9da31be0330858a82b8e6f4a /drivers/mmc/host/atmel-mci.c | |
parent | 0f762426769a517d5b278e4e5d579fcea6801734 (diff) | |
download | op-kernel-dev-9cbef73cb657ff795c130cccfed251f0ae923abb.zip op-kernel-dev-9cbef73cb657ff795c130cccfed251f0ae923abb.tar.gz |
mmc: atmel-mci: move mach header to platform_data
Move the mach header that can come either from arm/mach-at91 or avr32 to
platform_data to be able to switch the AT91 platforms to multiplatform.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
[Ulf: Fixed compile error]
Diffstat (limited to 'drivers/mmc/host/atmel-mci.c')
-rw-r--r-- | drivers/mmc/host/atmel-mci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c index 77250d4..0b9ddf8 100644 --- a/drivers/mmc/host/atmel-mci.c +++ b/drivers/mmc/host/atmel-mci.c @@ -30,11 +30,11 @@ #include <linux/stat.h> #include <linux/types.h> #include <linux/platform_data/atmel.h> +#include <linux/platform_data/mmc-atmel-mci.h> #include <linux/mmc/host.h> #include <linux/mmc/sdio.h> -#include <mach/atmel-mci.h> #include <linux/atmel-mci.h> #include <linux/atmel_pdc.h> |