diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:30:43 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:41 -0600 |
commit | 0cc1f2d813e0ef58d1b49875ccd77c1f0b411062 (patch) | |
tree | d3eb8aa359535a2244fd24e276217faacbb94f0e /drivers/dma/lpc32xx_dma.c | |
parent | f01e39cb97b3a3215f2572ccb161d16e55ffb43e (diff) |
dma: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/dma/lpc32xx_dma.c')
-rw-r--r-- | drivers/dma/lpc32xx_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/lpc32xx_dma.c b/drivers/dma/lpc32xx_dma.c index 0efdfd028cf..f15b67546a9 100644 --- a/drivers/dma/lpc32xx_dma.c +++ b/drivers/dma/lpc32xx_dma.c @@ -7,9 +7,9 @@ * Copyright (c) 2015 Tyco Fire Protection Products. */ -#include <common.h> #include <errno.h> #include <init.h> +#include <time.h> #include <asm/arch/dma.h> #include <asm/arch/cpu.h> #include <asm/arch/clk.h> |