On Sun, Dec 27, 2020 at 10:12:27PM +0100, Hans de Goede wrote:
All the callers of extcon_set_state_sync() log an error on failure, without doing any further error-handling (as there is nothing they can do about the error).
Factor this out into a helper to remove some duplicate code.
Signed-off-by: Hans de Goede hdegoede@redhat.com
drivers/extcon/extcon-arizona.c | 47 ++++++++++++--------------------- 1 file changed, 17 insertions(+), 30 deletions(-)
diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c index 145ca5cd40d5..d5b3231744f9 100644 --- a/drivers/extcon/extcon-arizona.c +++ b/drivers/extcon/extcon-arizona.c @@ -595,6 +595,16 @@ static int arizona_hpdet_do_id(struct arizona_extcon_info *info, int *reading, return 0; }
+static void arizona_set_extcon_state(struct arizona_extcon_info *info,
unsigned int id, bool state)
+{
- int ret;
- ret = extcon_set_state_sync(info->edev, id, state);
- if (ret)
dev_err(info->arizona->dev, "Failed to set extcon state: %d\n", ret);
+}
Would be nice to also print which ID it is that is failing, would help to narrow things down since we lose the customer error messages for each case.
Thanks, Charles