2014-02-20 01:56:05

by Xiubo Li

[permalink] [raw]
Subject: [PATCH Resend] regmap: fix _regmap_update_bits()

Since sometimes the 'config' parameter has no use, it should be NULL.
And make the code simplifier.

Signed-off-by: Xiubo Li <[email protected]>
---

This resend version just rewrites the commit comment.


drivers/base/regmap/regmap.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index 6a19515..099522b 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -1966,9 +1966,11 @@ static int _regmap_update_bits(struct regmap *map, unsigned int reg,

if (tmp != orig) {
ret = _regmap_write(map, reg, tmp);
- *change = true;
+ if (change)
+ *change = true;
} else {
- *change = false;
+ if (change)
+ *change = false;
}

return ret;
@@ -1987,11 +1989,10 @@ static int _regmap_update_bits(struct regmap *map, unsigned int reg,
int regmap_update_bits(struct regmap *map, unsigned int reg,
unsigned int mask, unsigned int val)
{
- bool change;
int ret;

map->lock(map->lock_arg);
- ret = _regmap_update_bits(map, reg, mask, val, &change);
+ ret = _regmap_update_bits(map, reg, mask, val, NULL);
map->unlock(map->lock_arg);

return ret;
@@ -2016,14 +2017,13 @@ EXPORT_SYMBOL_GPL(regmap_update_bits);
int regmap_update_bits_async(struct regmap *map, unsigned int reg,
unsigned int mask, unsigned int val)
{
- bool change;
int ret;

map->lock(map->lock_arg);

map->async = true;

- ret = _regmap_update_bits(map, reg, mask, val, &change);
+ ret = _regmap_update_bits(map, reg, mask, val, NULL);

map->async = false;

--
1.8.4


2014-02-20 02:49:37

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH Resend] regmap: fix _regmap_update_bits()

On Thu, Feb 20, 2014 at 08:50:10AM +0800, Xiubo Li wrote:

> This resend version just rewrites the commit comment.

I've applied this but I updated the commit log further - part of the
reason this didn't get applied first time around was that it says it's a
fix but it's actually a coding style change. The other part of the
reason was that at first glance I wasn't sure if it was actually an
improvement so wanted to think about it.


Attachments:
(No filename) (435.00 B)
signature.asc (836.00 B)
Digital signature
Download all attachments

2014-02-20 08:24:57

by Xiubo Li

[permalink] [raw]
Subject: RE: [PATCH Resend] regmap: fix _regmap_update_bits()

> Subject: Re: [PATCH Resend] regmap: fix _regmap_update_bits()
>
> On Thu, Feb 20, 2014 at 08:50:10AM +0800, Xiubo Li wrote:
>
> > This resend version just rewrites the commit comment.
>
> I've applied this but I updated the commit log further - part of the
> reason this didn't get applied first time around was that it says it's a
> fix but it's actually a coding style change.

Yes, it's.

Thanks very much for your updating.

--
Best Regards,
Xiubo

> The other part of the
> reason was that at first glance I wasn't sure if it was actually an
> improvement so wanted to think about it.