Lines Matching refs:name
216 .name = "intelfb",
270 #define OPT_EQUAL(opt, name) (!strncmp(opt, name, strlen(name)))
271 #define OPT_INTVAL(opt, name) simple_strtoul(opt + strlen(name) + 1, NULL, 0)
272 #define OPT_STRVAL(opt, name) (opt + strlen(name))
274 static __inline__ char * get_opt_string(const char *this_opt, const char *name)
280 p = OPT_STRVAL(this_opt, name);
292 static __inline__ int get_opt_int(const char *this_opt, const char *name,
298 if (!OPT_EQUAL(this_opt, name))
301 *ret = OPT_INTVAL(this_opt, name);
305 static __inline__ int get_opt_bool(const char *this_opt, const char *name,
311 if (OPT_EQUAL(this_opt, name)) {
312 if (this_opt[strlen(name)] == '=')
313 *ret = simple_strtoul(this_opt + strlen(name) + 1,
318 if (OPT_EQUAL(this_opt, "no") && OPT_EQUAL(this_opt + 2, name))
590 PCI_FUNC(pdev->devfn), dinfo->name,
599 dinfo->name);
1113 strcpy(info->fix.id, dinfo->name);