From: Luis de Bethencourt Date: Thu, 17 Sep 2015 16:09:55 +0000 (+0200) Subject: hwmon: (pwm-fan) Fix module autoload for OF platform driver X-Git-Tag: MMI-PSA29.97-13-9~9294^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f491e70ccffa5d19aa51c958909320fa1f3905ed;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git hwmon: (pwm-fan) Fix module autoload for OF platform driver This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/pwm-fan.c b/drivers/hwmon/pwm-fan.c index 2d9a712699ff..3e23003f78b0 100644 --- a/drivers/hwmon/pwm-fan.c +++ b/drivers/hwmon/pwm-fan.c @@ -323,6 +323,7 @@ static const struct of_device_id of_pwm_fan_match[] = { { .compatible = "pwm-fan", }, {}, }; +MODULE_DEVICE_TABLE(of, of_pwm_fan_match); static struct platform_driver pwm_fan_driver = { .probe = pwm_fan_probe,