diff options
author | Rob Herring <robh@kernel.org> | 2023-03-10 17:47:31 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-11 15:18:54 +0300 |
commit | 1e108e60a44a924e3666fa2a10b53f6c31522856 (patch) | |
tree | 6dc8938b5b7f0f678ea0a9ba0974341b45eceb5c /sound/soc/sh/fsi.c | |
parent | 75034eb5e4c267d4ab93085b5d6fa3dab2535b34 (diff) | |
download | linux-1e108e60a44a924e3666fa2a10b53f6c31522856.tar.xz |
ASoC: Use of_property_present() for testing DT property presence
It is preferred to use typed property access functions (i.e.
of_property_read_<type> functions) rather than low-level
of_get_property/of_find_property functions for reading properties. As
part of this, convert of_get_property/of_find_property calls to the
recently added of_property_present() helper when we just want to test
for presence of a property and nothing more.
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230310144732.1546328-1-robh@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh/fsi.c')
-rw-r--r-- | sound/soc/sh/fsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index f3edc2e3d9d7..9f3f1af6349f 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c @@ -1855,7 +1855,7 @@ static void fsi_of_parse(char *name, for (i = 0; i < ARRAY_SIZE(of_parse_property); i++) { sprintf(prop, "%s,%s", name, of_parse_property[i].name); - if (of_get_property(np, prop, NULL)) + if (of_property_present(np, prop)) flags |= of_parse_property[i].val; } info->flags = flags; |