diff mbox

i2c: mux: reg: use of_property_read_bool()

Message ID 20170820190656.846142358@cogentembedded.com
State Accepted
Headers show

Commit Message

Sergei Shtylyov Aug. 20, 2017, 7:06 p.m. UTC
Use more compact of_property_read_bool() calls for the boolean properties
instead  of of_find_property() calls  in i2c_mux_reg_probe_dt().

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
The patch is against Wolfram Sang's 'linux.git' repo's 'i2c/for-next' branch.

 drivers/i2c/muxes/i2c-mux-reg.c |    9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

Comments

Sergei Shtylyov Oct. 13, 2017, 12:13 p.m. UTC | #1
Hello!

On 08/20/2017 10:06 PM, Sergei Shtylyov wrote:

> Use more compact of_property_read_bool() calls for the boolean properties
> instead  of of_find_property() calls  in i2c_mux_reg_probe_dt().
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
[...]

    This patch seems to be lost. Ping?

MBR, Sergei
Peter Rosin Oct. 13, 2017, 9:53 p.m. UTC | #2
On 2017-10-13 14:13, Sergei Shtylyov wrote:
> Hello!
> 
> On 08/20/2017 10:06 PM, Sergei Shtylyov wrote:
> 
>> Use more compact of_property_read_bool() calls for the boolean properties
>> instead  of of_find_property() calls  in i2c_mux_reg_probe_dt().
>>
>> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
> [...]
> 
>     This patch seems to be lost. Ping?

The patch arrived too late to hit the previous merge window (I had already
done the pull request). I had admittedly forgotten about this patch, but the
mail sits there with a "TODO" tag, so I think I would have found it when
digging through stuff for this merge window.

Anyway, thanks for the reminder, and sorry for the delay.

Cheers,
Peter
Peter Rosin Oct. 20, 2017, 3:40 p.m. UTC | #3
On 2017-08-20 21:06, Sergei Shtylyov wrote:
> Use more compact of_property_read_bool() calls for the boolean properties
> instead  of of_find_property() calls  in i2c_mux_reg_probe_dt().
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
> 
> ---
> The patch is against Wolfram Sang's 'linux.git' repo's 'i2c/for-next' branch.

Patch applied. For the next time, please use "git format-patch" to generate
your patches (or rather, read and follow the latest incarnation of [1]).
I fixed it up along with a couple of white-space issues this time, since
I was bored and had so little for this merge window. But you generally
can't expect maintainers to do this for you.

Cheers,
Peter

[1] https://www.kernel.org/doc/html/v4.13/process/submitting-patches.html
diff mbox

Patch

Index: linux/drivers/i2c/muxes/i2c-mux-reg.c
===================================================================
--- linux.orig/drivers/i2c/muxes/i2c-mux-reg.c
+++ linux/drivers/i2c/muxes/i2c-mux-reg.c
@@ -107,9 +107,9 @@  static int i2c_mux_reg_probe_dt(struct r
 	put_device(&adapter->dev);
 
 	mux->data.n_values = of_get_child_count(np);
-	if (of_find_property(np, "little-endian", NULL)) {
+	if (of_property_read_bool(np, "little-endian")) {
 		mux->data.little_endian = true;
-	} else if (of_find_property(np, "big-endian", NULL)) {
+	} else if (of_property_read_bool(np, "big-endian")) {
 		mux->data.little_endian = false;
 	} else {
 #if defined(__BYTE_ORDER) ? __BYTE_ORDER == __LITTLE_ENDIAN : \
@@ -122,10 +122,7 @@  static int i2c_mux_reg_probe_dt(struct r
 #error Endianness not defined?
 #endif
 	}
-	if (of_find_property(np, "write-only", NULL))
-		mux->data.write_only = true;
-	else
-		mux->data.write_only = false;
+	mux->data.write_only = of_property_read_bool(np, "write-only");
 
 	values = devm_kzalloc(&pdev->dev,
 			      sizeof(*mux->data.values) * mux->data.n_values,