diff options
author | Álvaro Fernández Rojas | 2018-11-28 19:17:49 +0100 |
---|---|---|
committer | Tom Rini | 2018-12-07 08:13:45 -0500 |
commit | 10b4dc520811fdfc5a31f6067be2b0cd0753998d (patch) | |
tree | c5dd61f53ac06d1e2e010ed91a3f741f81bea398 /drivers/dma/ti-edma3.c | |
parent | 205b010caf8d07e95c49efcbe15cad3fc5c8f31f (diff) |
dma: move dma_ops to dma-uclass.h
Move dma_ops to a separate header file, following other uclass
implementations. While doing so, this patch also improves dma_ops
documentation.
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Diffstat (limited to 'drivers/dma/ti-edma3.c')
-rw-r--r-- | drivers/dma/ti-edma3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ti-edma3.c b/drivers/dma/ti-edma3.c index 2131e10a408..7e11b13e45c 100644 --- a/drivers/dma/ti-edma3.c +++ b/drivers/dma/ti-edma3.c @@ -11,7 +11,7 @@ #include <asm/io.h> #include <common.h> #include <dm.h> -#include <dma.h> +#include <dma-uclass.h> #include <asm/omap_common.h> #include <asm/ti-common/ti-edma3.h> |