Lines Matching refs:name
215 .name = "intelfb",
269 #define OPT_EQUAL(opt, name) (!strncmp(opt, name, strlen(name)))
270 #define OPT_INTVAL(opt, name) simple_strtoul(opt + strlen(name) + 1, NULL, 0)
271 #define OPT_STRVAL(opt, name) (opt + strlen(name))
273 static __inline__ char * get_opt_string(const char *this_opt, const char *name)
279 p = OPT_STRVAL(this_opt, name);
291 static __inline__ int get_opt_int(const char *this_opt, const char *name,
297 if (!OPT_EQUAL(this_opt, name))
300 *ret = OPT_INTVAL(this_opt, name);
304 static __inline__ int get_opt_bool(const char *this_opt, const char *name,
310 if (OPT_EQUAL(this_opt, name)) {
311 if (this_opt[strlen(name)] == '=')
312 *ret = simple_strtoul(this_opt + strlen(name) + 1,
317 if (OPT_EQUAL(this_opt, "no") && OPT_EQUAL(this_opt + 2, name))
582 PCI_FUNC(pdev->devfn), dinfo->name,
591 dinfo->name);
1106 strcpy(info->fix.id, dinfo->name);