Message ID | 20180705055727.11898-1-vkoul@kernel.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
diff --git a/drivers/dma/fsl-edma-common.c b/drivers/dma/fsl-edma-common.c index fd4333995a0e..17e386911825 100644 --- a/drivers/dma/fsl-edma-common.c +++ b/drivers/dma/fsl-edma-common.c @@ -4,6 +4,7 @@ // Copyright (c) 2017 Sysam, Angelo Dureghello <angelo@sysam.it> #include <linux/dmapool.h> +#include <linux/module.h> #include <linux/slab.h> #include "fsl-edma-common.h"
We added MODULE_LICENSE but missed adding the header, so add it drivers/dma/fsl-edma-common.c:672:16: error: expected declaration specifiers or '...' before string constant MODULE_LICENSE("GPL v2"); ^~~~~~~~ Fixes: 7565699b2d21 ("dmaengine: fsl-edma-common: Add missing MODULE_LICENSE") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Vinod Koul <vkoul@kernel.org> --- drivers/dma/fsl-edma-common.c | 1 + 1 file changed, 1 insertion(+)