Searched refs:type_name (Results 1 - 25 of 70) sorted by path

123

/linux-master/arch/alpha/kernel/
H A Dsetup.c444 char *type_name, *var_name, *p; local
568 cpu->type, &type_name, &var_name);
579 type_name, (*var_name ? " variation " : ""), var_name,
591 type_name, (*var_name ? " variation " : ""),
986 char **type_name, char **variation_name)
993 *type_name = systype_names[type];
996 *type_name = api_names[type - ST_API_BIAS];
999 *type_name = unofficial_names[type - ST_UNOFFICIAL_BIAS];
1001 *type_name = sys_unknown;
985 get_sysnames(unsigned long type, unsigned long variation, unsigned long cpu, char **type_name, char **variation_name) argument
/linux-master/arch/mips/boot/tools/
H A Drelocs.c62 static const char * const type_name[] = { local
86 if (type < ARRAY_SIZE(type_name) && type_name[type])
87 name = type_name[type];
/linux-master/arch/x86/tools/
H A Drelocs.c154 static const char *type_name[] = { local
166 if (type < ARRAY_SIZE(type_name)) {
167 name = type_name[type];
207 static const char *type_name[] = { local
247 if (type < ARRAY_SIZE(type_name) && type_name[type]) {
248 name = type_name[type];
/linux-master/arch/x86/xen/
H A Dp2m.c802 static const char * const type_name[] = { local
817 type_name[prev_type]);
823 type_name[prev_type]);
/linux-master/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_context.c78 .type_name = "legacy contexts",
93 .type_name = "guest backed contexts",
108 .type_name = "dx contexts",
H A Dvmwgfx_cotable.c138 .type_name = "context guest backed object tables",
H A Dvmwgfx_resource.c697 "for %s.\n", res->func->type_name);
H A Dvmwgfx_resource_priv.h63 * @type_name: String that identifies the resource type.
86 const char *type_name; member in struct:vmw_res_func
H A Dvmwgfx_shader.c96 .type_name = "guest backed shaders",
111 .type_name = "dx shaders",
H A Dvmwgfx_simple_resource.c213 func->res_func.type_name,
221 func->res_func.type_name,
H A Dvmwgfx_so.c87 .type_name = "DX view",
H A Dvmwgfx_streamoutput.c68 .type_name = "DX streamoutput",
H A Dvmwgfx_surface.c132 .type_name = "legacy surfaces",
147 .type_name = "guest backed surfaces",
H A Dvmwgfx_va.c86 .type_name = "overlay stream",
/linux-master/drivers/hwmon/
H A Dadm1021.c326 const char *type_name; local
363 type_name = "max1617a";
366 type_name = "adm1023";
368 type_name = "adm1021";
372 type_name = "thmc10";
374 type_name = "gl523sm";
376 type_name = "mc1066";
416 type_name = "lm84";
423 type_name = "max1617";
428 type_name, i2c_adapter_i
[all...]
H A Dlm85.c1470 const char *type_name = NULL; local
1489 type_name = "lm85c";
1492 type_name = "lm85b";
1502 type_name = "lm96000";
1508 type_name = "adm1027";
1512 type_name = "adt7463";
1516 type_name = "adt7468";
1524 type_name = "emc6d100";
1527 type_name = "emc6d102";
1531 type_name
[all...]
H A Dmax1668.c363 const char *type_name; local
378 type_name = NULL;
380 type_name = "max1668";
382 type_name = "max1805";
384 type_name = "max1989";
386 if (!type_name)
389 strscpy(info->type, type_name, I2C_NAME_SIZE);
H A Dthmc50.c314 const char *type_name; local
334 type_name = "adm1022";
346 type_name = "thmc50";
353 type_name, (revision >> 4) - 0xc, revision & 0xf);
355 strscpy(info->type, type_name, I2C_NAME_SIZE);
/linux-master/drivers/hwtracing/coresight/
H A Dcoresight-cti-platform.c269 const char *type_name)
280 items = cti_plat_count_sig_elements(fwnode, type_name);
290 err = fwnode_property_read_u32_array(fwnode, type_name,
267 cti_plat_read_trig_types(struct cti_trig_grp *tgrp, const struct fwnode_handle *fwnode, const char *type_name) argument
H A Dcoresight-etm4x-core.c2034 char *type_name; local
2048 type_name = "ete";
2052 type_name = "etm";
2056 "%s%d", type_name, drvdata->cpu);
2094 drvdata->cpu, type_name, major, minor);
/linux-master/drivers/md/
H A Ddm-exception-store.c52 * @type_name
57 * Exstore modules are named "dm-exstore-" followed by the 'type_name'.
59 * This function will first try the module "dm-exstore-<type_name>",
60 * then truncate 'type_name' on the last '-' and try again.
62 * For example, if type_name was "clustered-shared", it would search
65 * 'dm-exception-store-<type_name>' is too long of a name in my
67 * containing exception store implementations be 'dm-exstore-<type_name>'.
73 static struct dm_exception_store_type *get_type(const char *type_name) argument
78 type = _get_exception_store_type(type_name);
82 type_name_dup = kstrdup(type_name, GFP_KERNE
[all...]
H A Ddm-log.c51 * @type_name
56 * Log modules are named "dm-log-" followed by the 'type_name'.
58 * This function will first try the module "dm-log-<type_name>",
59 * then truncate 'type_name' on the last '-' and try again.
61 * For example, if type_name was "clustered-disk", it would search
66 static struct dm_dirty_log_type *get_type(const char *type_name) argument
71 if (!type_name)
74 log_type = _get_dirty_log_type(type_name);
78 type_name_dup = kstrdup(type_name, GFP_KERNEL);
81 type_name);
148 dm_dirty_log_create(const char *type_name, struct dm_target *ti, int (*flush_callback_fn)(struct dm_target *ti), unsigned int argc, char **argv) argument
[all...]
/linux-master/drivers/media/pci/bt8xx/
H A Dbttv-driver.c3077 const char *type_name)
3087 type_name, bttv_tvcards[btv->c.type].name);
3095 if (strcmp(type_name, "radio") == 0)
3098 if (strcmp(type_name, "video") == 0) {
3102 } else if (strcmp(type_name, "vbi") == 0) {
3075 vdev_init(struct bttv *btv, struct video_device *vfd, const struct video_device *template, const char *type_name) argument
/linux-master/drivers/media/pci/ddbridge/
H A Dddbridge-core.c1844 port->type_name = "NONE";
1854 port->type_name = "DUMMY";
1873 port->type_name = "MXL5XX";
1886 port->type_name = "MCI";
1894 port->type_name = "INTERNAL";
1907 port->type_name = "CXD2099";
1924 port->type_name = "CI_XO2";
1931 port->type_name = "UNKNOWN";
1936 port->type_name = xo2types[id];
1944 port->type_name
[all...]
H A Dddbridge.h225 char *type_name; member in struct:ddb_port

Completed in 346 milliseconds

123