From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5A1BC2C80 for ; Tue, 19 Oct 2021 15:38:55 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 68CF1610A1; Tue, 19 Oct 2021 15:38:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634657935; bh=o5ezVg7Hp4npuopz5xMP0kwyU75vnc6iAMnB1+AOcx8=; h=From:To:Cc:Subject:Date:From; b=VZKQHSgjp5ceouIKTCzmunpW9pLq0U3OssQa6PEEVopkEQHUN9RewTEiDMK9dGYYw wWaKOgypCV9ndYGEFrSLqiHV2YDAiYFIcDBDLgLwaMhNYK2l4oL8zoa9YHIzNOetBz QBdWOFMW5tJaPHXcN7Lj8ES9mLGRIcFAWu+H7qKd9ksERXZRbBe1SpRdWFai4ylgH5 LHrY+Fw3UYyrqPj2YUjTxF4m5tXlWRqKeNXaNsvVbiDmV2Z+dc3Cu/7DbJiypMVVZa K4Ttv/2ObuURdsu1DseF9ZfOxg1uVK8ZL30pO3Dx+Jai56pe3UJc5uGe548jaiufuW sbB2K3uFI8EKA== From: Arnd Bergmann To: Liam Girdwood , Mark Brown , Nathan Chancellor , Nick Desaulniers , =?UTF-8?q?Ma=C3=ADra=20Canal?= Cc: Arnd Bergmann , Colin Ian King , linux-kernel@vger.kernel.org, llvm@lists.linux.dev Subject: [PATCH] regulator: lp872x: fix enum conversion warning Date: Tue, 19 Oct 2021 17:38:43 +0200 Message-Id: <20211019153851.509626-1-arnd@kernel.org> X-Mailer: git-send-email 2.29.2 Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Arnd Bergmann clang warns that the argument to devm_gpiod_get_optional() is the wrong type: drivers/regulator/lp872x.c:689:57: error: implicit conversion from enumeration type 'enum lp872x_dvs_state' to different enumeration type 'enum gpiod_flags' [-Werror,-Wenum-conversion] dvs->gpio = devm_gpiod_get_optional(lp->dev, "ti,dvs", pinstate); ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~ The enum value is specifcally chosen to be the same here, but the compiler only sees the mismatched types. This could be worked around using another ?: expression, but it seems easiest to replace the assignment with a macro. Fixes: 72bf80cf09c4 ("regulator: lp872x: replacing legacy gpio interface for gpiod") Signed-off-by: Arnd Bergmann --- drivers/regulator/lp872x.c | 6 +++--- include/linux/regulator/lp872x.h | 8 +++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/drivers/regulator/lp872x.c b/drivers/regulator/lp872x.c index 1dba5dbcd461..61412ebc8d8d 100644 --- a/drivers/regulator/lp872x.c +++ b/drivers/regulator/lp872x.c @@ -103,7 +103,7 @@ struct lp872x { enum lp872x_id chipid; struct lp872x_platform_data *pdata; int num_regulators; - enum lp872x_dvs_state dvs_pin; + enum gpiod_flags dvs_pin; }; /* LP8720/LP8725 shared voltage table for LDOs */ @@ -251,7 +251,7 @@ static int lp872x_regulator_enable_time(struct regulator_dev *rdev) static void lp872x_set_dvs(struct lp872x *lp, enum lp872x_dvs_sel dvs_sel, struct gpio_desc *gpio) { - enum lp872x_dvs_state state; + enum gpiod_flags state; state = dvs_sel == SEL_V1 ? DVS_HIGH : DVS_LOW; gpiod_set_value(gpio, state); @@ -675,7 +675,7 @@ static const struct regulator_desc lp8725_regulator_desc[] = { static int lp872x_init_dvs(struct lp872x *lp) { struct lp872x_dvs *dvs = lp->pdata ? lp->pdata->dvs : NULL; - enum lp872x_dvs_state pinstate; + enum gpiod_flags pinstate; u8 mask[] = { LP8720_EXT_DVS_M, LP8725_DVS1_M | LP8725_DVS2_M }; u8 default_dvs_mode[] = { LP8720_DEFAULT_DVS, LP8725_DEFAULT_DVS }; diff --git a/include/linux/regulator/lp872x.h b/include/linux/regulator/lp872x.h index 8e7e0343c6e1..5b94fe38fc78 100644 --- a/include/linux/regulator/lp872x.h +++ b/include/linux/regulator/lp872x.h @@ -40,10 +40,8 @@ enum lp872x_regulator_id { LP872X_ID_MAX, }; -enum lp872x_dvs_state { - DVS_LOW = GPIOD_OUT_LOW, - DVS_HIGH = GPIOD_OUT_HIGH, -}; +#define DVS_LOW GPIOD_OUT_LOW +#define DVS_HIGH GPIOD_OUT_HIGH enum lp872x_dvs_sel { SEL_V1, @@ -59,7 +57,7 @@ enum lp872x_dvs_sel { struct lp872x_dvs { struct gpio_desc *gpio; enum lp872x_dvs_sel vsel; - enum lp872x_dvs_state init_state; + enum gpiod_flags init_state; }; /** -- 2.29.2