Symbol: of_prop_next_string
arch/powerpc/platforms/pseries/of_helpers.c
56
p = of_prop_next_string(*prop, p);
arch/powerpc/platforms/pseries/of_helpers.c
62
p = of_prop_next_string(*prop, p);
drivers/leds/leds-powernv.c
255
while ((cur = of_prop_next_string(p, cur)) != NULL) {
drivers/memory/of_memory.c
361
for (cp = of_prop_next_string(prop, NULL); cp;
drivers/memory/of_memory.c
362
cp = of_prop_next_string(prop, cp)) {
drivers/net/wireless/mediatek/mt76/eeprom.c
202
while ((cp = of_prop_next_string(prop, cp)) != NULL)
drivers/of/base.c
356
for (cp = of_prop_next_string(prop, NULL); cp;
drivers/of/base.c
357
cp = of_prop_next_string(prop, cp), index++) {
drivers/of/property.c
680
EXPORT_SYMBOL_GPL(of_prop_next_string);
drivers/of/unittest.c
796
strings[0] = of_prop_next_string(prop, NULL);
drivers/of/unittest.c
799
strings[0] = of_prop_next_string(prop, strings[0]);
drivers/of/unittest.c
802
strings[0] = of_prop_next_string(prop, strings[0]);
drivers/of/unittest.c
805
strings[0] = of_prop_next_string(prop, strings[0]);
drivers/of/unittest.c
810
strings[0] = of_prop_next_string(prop, NULL);
drivers/of/unittest.c
815
strings[0] = of_prop_next_string(prop, NULL);
drivers/of/unittest.c
818
strings[0] = of_prop_next_string(prop, strings[0]);
drivers/of/unittest.c
821
strings[0] = of_prop_next_string(prop, strings[0]);
include/linux/of.h
1525
s = of_prop_next_string(prop, NULL); \
include/linux/of.h
1527
s = of_prop_next_string(prop, s))
include/linux/of.h
463
const char *of_prop_next_string(const struct property *prop, const char *cur);