Re: [PATCH 08/11] net/fsl: use of_property_read_bool

From: Johannes Berg
Date: Fri Aug 05 2016 - 05:30:48 EST



> - if (of_get_property(pdev->dev.of_node,
> - ÂÂÂÂ"little-endian", NULL))
> + if (of_property_read_bool(pdev->dev.of_node, "little-
> endian"))
> Â priv->is_little_endian = true;
> Â else
> Â priv->is_little_endian = false;
>

Perhaps, while changing this, that'd be better as

priv->is_little_endian = of_property_read_bool(...);

Obviously that would've worked before, but now it'd be even easier to
understand, it seems.

johannes