Browse Source

i2c: mpc: use of_property_read_bool

Use of_property_read_bool to check for the existence of a property.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Julia Lawall 9 years ago
parent
commit
750bd8b990
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/i2c/busses/i2c-mpc.c

+ 1 - 1
drivers/i2c/busses/i2c-mpc.c

@@ -700,7 +700,7 @@ static int fsl_i2c_probe(struct platform_device *op)
 		}
 	}
 
-	if (of_get_property(op->dev.of_node, "fsl,preserve-clocking", NULL)) {
+	if (of_property_read_bool(op->dev.of_node, "fsl,preserve-clocking")) {
 		clock = MPC_I2C_CLOCK_PRESERVE;
 	} else {
 		prop = of_get_property(op->dev.of_node, "clock-frequency",