Hi Yue, Yue Haibing <[email protected]> wrote on Thu, 4 Apr 2019 18:47:11 +0800:
> From: YueHaibing <[email protected]> > > gcc warning this: > > WARNING: modpost: missing MODULE_LICENSE() in > drivers/mtd/nand/raw/ingenic/ingenic_ecc.o > > Add MODULE_LICENSE,MODULE_AUTHOR and MODULE_DESCRIPTION. > > Reported-by: Hulk Robot <[email protected]> > Fixes: 9df5741a577e ("mtd: rawnand: ingenic: Separate top-level and SoC > specific code") > Signed-off-by: YueHaibing <[email protected]> > --- > drivers/mtd/nand/raw/ingenic/ingenic_ecc.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/mtd/nand/raw/ingenic/ingenic_ecc.c > b/drivers/mtd/nand/raw/ingenic/ingenic_ecc.c > index 7b07a6a..77e996e 100644 > --- a/drivers/mtd/nand/raw/ingenic/ingenic_ecc.c > +++ b/drivers/mtd/nand/raw/ingenic/ingenic_ecc.c > @@ -158,3 +158,8 @@ int ingenic_ecc_probe(struct platform_device *pdev) > return 0; > } > EXPORT_SYMBOL(ingenic_ecc_probe); > + > +MODULE_AUTHOR("Alex Smith <[email protected]>"); > +MODULE_AUTHOR("Harvey Hunt <[email protected]>"); > +MODULE_DESCRIPTION("Ingenic ECC common driver"); > +MODULE_LICENSE("GPL v2"); Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git branch nand/next. Thanks, Miquèl

