From: Hans de Goede Date: Wed, 21 Dec 2016 14:36:57 +0000 (+0100) Subject: power: supply: axp288_charger: Fix the module not auto-loading X-Git-Tag: v4.11-rc1~178^2~45 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=7def63ca9cb2ba89a80669dd0bef0e8edfae25d4;p=linux.git power: supply: axp288_charger: Fix the module not auto-loading Add a MODULE_DEVICE_TABLE to fix the module not auto-loading. Signed-off-by: Hans de Goede Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/supply/axp288_charger.c b/drivers/power/supply/axp288_charger.c index 6e588e69c5fc..ca4fa5124a99 100644 --- a/drivers/power/supply/axp288_charger.c +++ b/drivers/power/supply/axp288_charger.c @@ -856,8 +856,15 @@ static int axp288_charger_probe(struct platform_device *pdev) return 0; } +static const struct platform_device_id axp288_charger_id_table[] = { + { .name = "axp288_charger" }, + {}, +}; +MODULE_DEVICE_TABLE(platform, axp288_charger_id_table); + static struct platform_driver axp288_charger_driver = { .probe = axp288_charger_probe, + .id_table = axp288_charger_id_table, .driver = { .name = "axp288_charger", },