Lines Matching defs:suffix
1230 static int strcmp_suffix(const char *str, const char *suffix)
1235 suffix_len = strlen(suffix);
1238 return strcmp(str + len - suffix_len, suffix);
1248 * @suffix: Property suffix that is known to contain list of phandle(s) to
1252 * This is a helper function to parse properties that have a known fixed suffix
1262 const char *suffix,
1267 if (strcmp_suffix(prop_name, suffix))
1277 #define DEFINE_SUFFIX_PROP(fname, suffix, cells) \
1281 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \