diff options
author | Marc Zyngier <maz@kernel.org> | 2018-09-13 11:31:09 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2021-06-10 15:09:16 +0300 |
commit | 95af1df6f4e2b121ce33166d61c99250143073b5 (patch) | |
tree | 7929b0717ccb6f692e31b58f2d1ada73a52b91f1 /arch/mips/lantiq/xway | |
parent | 1982752f6ba6a9d74a214b008ae9e336339276e8 (diff) | |
download | linux-95af1df6f4e2b121ce33166d61c99250143073b5.tar.xz |
MIPS: lantiq: Directly include linux/of.h in xway/dma.c
This drivers currently obtains linux/of.h by luck and a chain of
bizarre inclusions, which we're about to fix.
Let's include the required file directly.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/mips/lantiq/xway')
-rw-r--r-- | arch/mips/lantiq/xway/dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/lantiq/xway/dma.c b/arch/mips/lantiq/xway/dma.c index aeb1b989cd4e..63dccb2ed08b 100644 --- a/arch/mips/lantiq/xway/dma.c +++ b/arch/mips/lantiq/xway/dma.c @@ -12,6 +12,7 @@ #include <linux/spinlock.h> #include <linux/clk.h> #include <linux/err.h> +#include <linux/of.h> #include <lantiq_soc.h> #include <xway_dma.h> |