diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-08-26 00:50:17 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-12 18:02:23 -0400 |
commit | b27af39935855c88ef2203dcfc1ff54e013237c4 (patch) | |
tree | 741e0eb177bf5dab0e50cc99b4c6a5983ef07fbb /drivers/mmc | |
parent | 29487ef4d5d720012658cb7a093af742f8ae2af5 (diff) |
dma: import linux/dma-direction.h to consolidate enum dma_data_direction
Import include/linux/dma-direction.h from Linux 4.13-rc7 and delete
duplicated definitions of enum dma_data_direction.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/uniphier-sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/uniphier-sd.c b/drivers/mmc/uniphier-sd.c index e272b141532..721b75fddac 100644 --- a/drivers/mmc/uniphier-sd.c +++ b/drivers/mmc/uniphier-sd.c @@ -11,10 +11,10 @@ #include <mmc.h> #include <dm.h> #include <linux/compat.h> +#include <linux/dma-direction.h> #include <linux/io.h> #include <linux/sizes.h> #include <asm/unaligned.h> -#include <asm/dma-mapping.h> DECLARE_GLOBAL_DATA_PTR; |