iio: adc: sun4i-gpadc-iio: Fix module autoload when PLATFORM devices are registered
authorEduardo Molinas <edu.molinas@gmail.com>
Mon, 1 May 2017 22:45:58 +0000 (18:45 -0400)
committerJonathan Cameron <jic23@kernel.org>
Sun, 7 May 2017 13:44:42 +0000 (14:44 +0100)
commitf83e36e0a372c012a31d57e9d3e69d29a158264e
tree1ac0c617cdd4a36eb72f8a80b93339cc4d5afb51
parent9122b54f266ddee09654fe3fbc503c1a60f4a01c
iio: adc: sun4i-gpadc-iio: Fix module autoload when PLATFORM devices are registered

If the driver is built as a module, it won't be autloaded if the devices
are registered via PLATFORM code because the PLATFORM device table
entries are not exported as aliases

Before the patch:
$ modinfo drivers/iio/adc/sun4i-gpadc-iio.ko | grep alias
$

After the patch:
$ modinfo drivers/iio/adc/sun4i-gpadc-iio.ko | grep alias
alias:          platform:sun6i-a31-gpadc-iio
alias:          platform:sun5i-a13-gpadc-iio
alias:          platform:sun4i-a10-gpadc-iio

Signed-off-by: Eduardo Molinas <edu.molinas@gmail.com>
Acked-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/adc/sun4i-gpadc-iio.c