Searched refs:subsystem (Results 1 - 25 of 38) sorted by relevance

12

/linux-master/samples/ftrace/
H A Dsample-trace-array.h16 * to be called "sample-subsystem". Therefore we must define the name of this
27 #define TRACE_SYSTEM sample-subsystem
/linux-master/sound/pci/emu10k1/
H A Demu10k1_main.c988 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x10241102,
1034 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x10211102,
1061 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x10011102,
1100 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x20011102,
1113 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x42011102,
1126 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40041102,
1140 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40071102,
1152 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40011102,
1162 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40021102,
1173 {.vendor = 0x1102, .device = 0x0004, .subsystem
1506 snd_emu10k1_create(struct snd_card *card, struct pci_dev *pci, unsigned short extin_mask, unsigned short extout_mask, long max_cache_bytes, int enable_ir, uint subsystem) argument
[all...]
H A Demu10k1.c34 static uint subsystem[SNDRV_CARDS]; /* Force card subsystem model */ variable
54 module_param_array(subsystem, uint, NULL, 0444);
55 MODULE_PARM_DESC(subsystem, "Force card subsystem model.");
98 enable_ir[dev], subsystem[dev]);
/linux-master/sound/pci/ctxfi/
H A Dxfi.c32 static unsigned int subsystem[SNDRV_CARDS]; variable
40 module_param_array(subsystem, int, NULL, 0444);
41 MODULE_PARM_DESC(subsystem, "Override subsystem ID for Creative X-Fi driver");
90 pci_id->driver_data, subsystem[dev], &atc);
/linux-master/drivers/remoteproc/
H A Dqcom_common.c56 * @encryption_status: Encryption status for this subsystem
57 * @encryption_required : Decides to encrypt the subsystem regions or not
58 * @region_count : Number of regions added in this subsystem toc
59 * @regions_baseptr : regions base pointer of the subsystem
104 static int qcom_add_minidump_segments(struct rproc *rproc, struct minidump_subsystem *subsystem, argument
120 seg_cnt = le32_to_cpu(subsystem->region_count);
121 ptr = ioremap((unsigned long)le64_to_cpu(subsystem->regions_baseptr),
150 struct minidump_subsystem *subsystem; local
162 /* Get subsystem table of contents using the minidump id */
163 subsystem
[all...]
/linux-master/lib/
H A Dkobject_uevent.c251 static int init_uevent_argv(struct kobj_uevent_env *env, const char *subsystem) argument
256 len = strscpy(&env->buf[env->buflen], subsystem, buffer_size);
259 __func__, buffer_size, subsystem);
464 const char *subsystem; local
512 /* originating subsystem */
514 subsystem = uevent_ops->name(kobj);
516 subsystem = kobject_name(&kset->kobj);
517 if (!subsystem) {
518 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
543 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
[all...]
/linux-master/drivers/soc/qcom/
H A Dqcom_stats.c75 * If a subsystem is in sleep when reading the sleep stats adjust
89 struct subsystem_data *subsystem = s->private; local
93 stat = qcom_smem_get(subsystem->pid, subsystem->smem_item, NULL);
/linux-master/scripts/
H A Dget_maintainer.pl57 my $subsystem = 0;
269 'subsystem!' => \$subsystem,
321 $subsystem = 0;
327 my $selections = $email + $scm + $status + $subsystem + $web;
329 die "$P: Missing required option: email, scm, status, subsystem or web\n";
634 my @subsystem = ();
655 if ($subsystem) {
656 @subsystem = uniq(@subsystem);
[all...]
H A Dparse-maintainers.pl46 P: URI or file for subsystem specific coding styles
/linux-master/drivers/misc/cxl/
H A Dflash.c22 u16 subsystem; member in struct:ai_header
248 header->subsystem = cpu_to_be16(adapter->guest->subsystem);
H A Dof.c245 read_prop_dword(np, "subsystem-vendor-id", &val);
246 read_prop_dword(np, "subsystem-id", &val);
420 prop = read_prop_dword(np, "subsystem-vendor-id", &val);
424 prop = read_prop_dword(np, "subsystem-id", &val);
426 adapter->guest->subsystem = val;
/linux-master/tools/leds/
H A Dget_led_device_info.sh37 bus=`readlink $led_cdev_path/device/subsystem | sed s'/.*\///'`
/linux-master/arch/alpha/lib/
H A Dev6-memset.S161 wh64 ($4) # L1 : memory subsystem write hint
339 wh64 ($4) # L1 : memory subsystem write hint
527 wh64 ($4) # L1 : memory subsystem write hint
H A Dev6-clear_user.S139 wh64 ($3) # .. .. .. L1 : memory subsystem hint
H A Dev6-memcpy.S85 wh64 ($7) # L1 : memory subsystem hint: 64 bytes at
/linux-master/kernel/trace/
H A Dtrace_probe.h556 const char *subsystem; member in struct:trace_probe_log
562 void trace_probe_log_init(const char *subsystem, int argc, const char **argv);
H A Dtrace_events.c960 __get_system(dir->subsystem);
966 /* If the subsystem is about to be freed, the dir must be too */
967 WARN_ON_ONCE(system_refcount(dir->subsystem) == 1 && dir->ref_count != 1);
969 __put_system(dir->subsystem);
1095 * The buf format can be <subsystem>:<event-name>
1099 * <subsystem>:* means all events in that subsystem
1100 * <subsystem>: means the same.
1102 * <name> (no ':') means all events in a subsystem with
1231 * The ftrace subsystem i
[all...]
H A Dtrace_probe.c157 void trace_probe_log_init(const char *subsystem, int argc, const char **argv) argument
159 trace_probe_log.subsystem = subsystem;
213 tracing_log_err(NULL, trace_probe_log.subsystem, command,
/linux-master/sound/pci/ca0106/
H A Dca0106_main.c145 static uint subsystem[SNDRV_CARDS]; /* Force card subsystem model */ variable
153 module_param_array(subsystem, uint, NULL, 0444);
154 MODULE_PARM_DESC(subsystem, "Force card subsystem model.");
1624 if (subsystem[dev]) {
1625 if (c->serial == subsystem[dev])
1631 if (subsystem[dev]) {
1633 "subsystem=0x%x. Forced to subsystem
[all...]
/linux-master/drivers/net/ethernet/emulex/benet/
H A Dbe_cmds.c99 static bool be_cmd_allowed(struct be_adapter *adapter, u8 opcode, u8 subsystem) argument
107 subsystem == cmd_priv_map[i].subsystem)
191 u8 opcode = 0, subsystem = 0; local
195 subsystem = resp_hdr->subsystem;
199 subsystem == CMD_SUBSYSTEM_LOWLEVEL) {
205 subsystem == CMD_SUBSYSTEM_LOWLEVEL) {
212 subsystem == CMD_SUBSYSTEM_COMMON) {
220 subsystem
249 u8 opcode = 0, subsystem = 0; local
795 be_wrb_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr, u8 subsystem, u8 opcode, int cmd_len, struct be_mcc_wrb *wrb, struct be_dma_mem *mem) argument
[all...]
/linux-master/include/linux/
H A Ddev_printk.h28 char subsystem[PRINTK_INFO_SUBSYSTEM_LEN]; member in struct:dev_printk_info
/linux-master/drivers/scsi/be2iscsi/
H A Dbe_cmds.c203 mbx_hdr->subsystem, mbx_hdr->opcode,
358 hdr->subsystem, hdr->opcode, compl_status, extd_status);
686 u8 subsystem, u8 opcode, u32 cmd_len)
689 req_hdr->subsystem = subsystem;
685 be_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr, u8 subsystem, u8 opcode, u32 cmd_len) argument
H A Dbe_cmds.h209 * List of common opcodes subsystem CMD_SUBSYSTEM_COMMON
210 * These opcodes are unique for each subsystem defined above
234 * These opcodes are unique for each subsystem defined above
255 u8 subsystem; /* dword 0 */ member in struct:be_cmd_req_hdr
1460 u8 subsystem, u8 opcode, u32 cmd_len);
/linux-master/drivers/scsi/elx/libefc_sli/
H A Dsli4.c977 sli_cmd_common_destroy_q(struct sli4 *sli4, u8 opc, u8 subsystem, u16 q_id) argument
987 sli_cmd_fill_hdr(&req->hdr, opc, subsystem,
999 u8 opcode, subsystem; local
1013 subsystem = SLI4_SUBSYSTEM_COMMON;
1017 subsystem = SLI4_SUBSYSTEM_COMMON;
1021 subsystem = SLI4_SUBSYSTEM_COMMON;
1025 subsystem = SLI4_SUBSYSTEM_FC;
1029 subsystem = SLI4_SUBSYSTEM_FC;
1037 rc = sli_cmd_common_destroy_q(sli4, opcode, subsystem, q->id);
3682 hdr->subsystem
[all...]
/linux-master/drivers/nvme/host/
H A Dnvme.h332 bool subsystem; member in struct:nvme_ctrl
445 * NVMe subsystem that any of our controllers can see, and the namespace
650 if (!ctrl->subsystem)

Completed in 327 milliseconds

12