From 6c381663bb3b4febc15b2fb33f046f0b986ce5c5 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 13 Apr 2017 14:04:11 +0200 Subject: power: supply: bq24190_charger: Use new extcon_register_notifier_all() When I submitted the extcon handling I had a patch pending for the extcon sub-system for extcon_register_notifier to take -1 as cable id for listening for all type cable events on an extcon with a single notifier. In the end it was decided to instead add a new extcon_register_notifier_all function for this, switch to using this. Signed-off-by: Hans de Goede Acked-by: Liam Breck Signed-off-by: Sebastian Reichel --- drivers/power/supply/bq24190_charger.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/power') diff --git a/drivers/power/supply/bq24190_charger.c b/drivers/power/supply/bq24190_charger.c index 7c893c00fa05..bd9e5c3d8cc2 100644 --- a/drivers/power/supply/bq24190_charger.c +++ b/drivers/power/supply/bq24190_charger.c @@ -1502,8 +1502,8 @@ static int bq24190_probe(struct i2c_client *client, if (bdi->extcon) { INIT_DELAYED_WORK(&bdi->extcon_work, bq24190_extcon_work); bdi->extcon_nb.notifier_call = bq24190_extcon_event; - ret = devm_extcon_register_notifier(dev, bdi->extcon, -1, - &bdi->extcon_nb); + ret = devm_extcon_register_notifier_all(dev, bdi->extcon, + &bdi->extcon_nb); if (ret) { dev_err(dev, "Can't register extcon\n"); goto out_sysfs; -- cgit v1.2.3