2015-06-01 13:08:06

by Steve Twiss

[permalink] [raw]
Subject: [PATCH V1] regulators: da9062: Remove unused variable build warning

From: S Twiss <[email protected]>

Remove the unused variable build warning for reg_matches that appears
during the compilation of the DA9062 regulator driver.

da9062-regulator.c: In function da9062_regulator_probe:
da9062-regulator.c:727:29: warning: unused variable reg_matches

Signed-off-by: Steve Twiss <[email protected]>

---
This patch applies against linux-next and next-20150528


drivers/regulator/da9062-regulator.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/regulator/da9062-regulator.c b/drivers/regulator/da9062-regulator.c
index e572a65..dd76da0 100644
--- a/drivers/regulator/da9062-regulator.c
+++ b/drivers/regulator/da9062-regulator.c
@@ -724,7 +724,6 @@ ldo_lim_error:
static int da9062_regulator_probe(struct platform_device *pdev)
{
struct da9062 *chip = dev_get_drvdata(pdev->dev.parent);
- struct of_regulator_match *reg_matches = NULL;
struct da9062_regulators *regulators;
struct da9062_regulator *regl;
struct regulator_config config = { };
--
end-of-patch for PATCH V1


2015-06-02 11:11:51

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH V1] regulators: da9062: Remove unused variable build warning

On Mon, Jun 01, 2015 at 02:00:20PM +0100, S Twiss wrote:
> From: S Twiss <[email protected]>
>
> Remove the unused variable build warning for reg_matches that appears
> during the compilation of the DA9062 regulator driver.

Applied, please use subject lines matching the style for the subsystem.


Attachments:
(No filename) (310.00 B)
signature.asc (473.00 B)
Digital signature
Download all attachments

2015-06-02 13:02:24

by Steve Twiss

[permalink] [raw]
Subject: RE: [PATCH V1] regulators: da9062: Remove unused variable build warning

On 02 June 2015 12:12 Mark Brown wrote:

> To: Opensource [Steve Twiss]
> Cc: LINUXKERNEL; Liam Girdwood; David Dajun Chen; Support Opensource
> Subject: Re: [PATCH V1] regulators: da9062: Remove unused variable build
> warning
>
> On Mon, Jun 01, 2015 at 02:00:20PM +0100, S Twiss wrote:
> > From: S Twiss <[email protected]>
> >
> > Remove the unused variable build warning for reg_matches that appears
> > during the compilation of the DA9062 regulator driver.
>
> Applied, please use subject lines matching the style for the subsystem.

Thanks.

Will use "regulator: da9062:" in future.
Regards,
Steve