Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: adc: rockchip_saradc: add missing MODULE_* data

The module-data is currently missing. This includes the license-information
which makes the driver taint the kernel and miss symbols when compiled as
module.

Fixes: 44d6f2ef94f9 ("iio: adc: add driver for Rockchip saradc")
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>

authored by

Heiko Stuebner and committed by
Jonathan Cameron
c11e28f9 88cc7b4e

+4
+4
drivers/iio/adc/rockchip_saradc.c
··· 349 349 }; 350 350 351 351 module_platform_driver(rockchip_saradc_driver); 352 + 353 + MODULE_AUTHOR("Heiko Stuebner <heiko@sntech.de>"); 354 + MODULE_DESCRIPTION("Rockchip SARADC driver"); 355 + MODULE_LICENSE("GPL v2");