]> asedeno.scripts.mit.edu Git - linux.git/commit
hwrng: meson - Fix module autoload for OF registration
authorJavier Martinez Canillas <javier@osg.samsung.com>
Mon, 17 Oct 2016 19:51:17 +0000 (16:51 -0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 25 Oct 2016 03:08:20 +0000 (11:08 +0800)
commit877f69a81eeee94a195cfbcfcf1dbb1b25f12fc8
tree5677aa22ccd40662278b758c51aabf2a0878d147
parent9b40f79c08e81234d759f188b233980d7e81df6c
hwrng: meson - Fix module autoload for OF registration

If the driver is built as a module, autoload won't work because the module
alias information is not filled. So user-space can't match the registered
device with the corresponding module.

Export the module alias information using the MODULE_DEVICE_TABLE() macro.

Before this patch:

$ modinfo drivers/char/hw_random/meson-rng.ko | grep alias
alias:          platform:meson-rng

After this patch:

$ modinfo drivers/char/hw_random/meson-rng.ko | grep alias
alias:          platform:meson-rng
alias:          of:N*T*Camlogic,meson-rngC*
alias:          of:N*T*Camlogic,meson-rng

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/char/hw_random/meson-rng.c