]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
staging: fbtft: Fix module autoload
authorJavier Martinez Canillas <javier@osg.samsung.com>
Mon, 17 Oct 2016 19:21:21 +0000 (16:21 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Oct 2016 07:50:52 +0000 (09:50 +0200)
commitf2503acfe3ffe8771d2a1f4ea1b89f67d819d037
tree964a00fb40f21c15beffb3885c074be0b65f56c5
parent3e93e354de1e103d012c9f9909bf5a1026d4e46a
staging: fbtft: Fix module autoload

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/staging/fbtft/flexfb.ko | grep alias
$

After this patch:

$ modinfo drivers/staging/fbtft/flexfb.ko | grep alias
alias:          platform:flexpfb

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fbtft/flexfb.c