/linux-6.6.21/drivers/s390/char/ |
D | sclp_rw.c | 43 struct sclp_buffer *buffer; in sclp_make_buffer() local 51 buffer = ((struct sclp_buffer *) ((addr_t) sccb + PAGE_SIZE)) - 1; in sclp_make_buffer() 52 buffer->sccb = sccb; in sclp_make_buffer() 53 buffer->retry_count = 0; in sclp_make_buffer() 54 buffer->messages = 0; in sclp_make_buffer() 55 buffer->char_sum = 0; in sclp_make_buffer() 56 buffer->current_line = NULL; in sclp_make_buffer() 57 buffer->current_length = 0; in sclp_make_buffer() 58 buffer->columns = columns; in sclp_make_buffer() 59 buffer->htab = htab; in sclp_make_buffer() [all …]
|
/linux-6.6.21/drivers/gpu/drm/etnaviv/ |
D | etnaviv_buffer.c | 25 static inline void OUT(struct etnaviv_cmdbuf *buffer, u32 data) in OUT() argument 27 u32 *vaddr = (u32 *)buffer->vaddr; in OUT() 29 BUG_ON(buffer->user_size >= buffer->size); in OUT() 31 vaddr[buffer->user_size / 4] = data; in OUT() 32 buffer->user_size += 4; in OUT() 35 static inline void CMD_LOAD_STATE(struct etnaviv_cmdbuf *buffer, in CMD_LOAD_STATE() argument 40 buffer->user_size = ALIGN(buffer->user_size, 8); in CMD_LOAD_STATE() 43 OUT(buffer, VIV_FE_LOAD_STATE_HEADER_OP_LOAD_STATE | in CMD_LOAD_STATE() 46 OUT(buffer, value); in CMD_LOAD_STATE() 49 static inline void CMD_END(struct etnaviv_cmdbuf *buffer) in CMD_END() argument [all …]
|
/linux-6.6.21/tools/testing/selftests/mm/ |
D | hmm-tests.c | 180 struct hmm_buffer *buffer, in hmm_dmirror_cmd() argument 187 cmd.addr = (__u64)buffer->ptr; in hmm_dmirror_cmd() 188 cmd.ptr = (__u64)buffer->mirror; in hmm_dmirror_cmd() 199 buffer->cpages = cmd.cpages; in hmm_dmirror_cmd() 200 buffer->faults = cmd.faults; in hmm_dmirror_cmd() 205 static void hmm_buffer_free(struct hmm_buffer *buffer) in hmm_buffer_free() argument 207 if (buffer == NULL) in hmm_buffer_free() 210 if (buffer->ptr) in hmm_buffer_free() 211 munmap(buffer->ptr, buffer->size); in hmm_buffer_free() 212 free(buffer->mirror); in hmm_buffer_free() [all …]
|
/linux-6.6.21/sound/pci/ca0106/ |
D | ca0106_proc.c | 84 static void snd_ca0106_proc_dump_iec958( struct snd_info_buffer *buffer, u32 value) in snd_ca0106_proc_dump_iec958() argument 95 snd_iprintf(buffer, "Mode: consumer\n"); in snd_ca0106_proc_dump_iec958() 96 snd_iprintf(buffer, "Data: "); in snd_ca0106_proc_dump_iec958() 98 snd_iprintf(buffer, "audio\n"); in snd_ca0106_proc_dump_iec958() 100 snd_iprintf(buffer, "non-audio\n"); in snd_ca0106_proc_dump_iec958() 102 snd_iprintf(buffer, "Rate: "); in snd_ca0106_proc_dump_iec958() 105 snd_iprintf(buffer, "44100 Hz\n"); in snd_ca0106_proc_dump_iec958() 108 snd_iprintf(buffer, "48000 Hz\n"); in snd_ca0106_proc_dump_iec958() 111 snd_iprintf(buffer, "32000 Hz\n"); in snd_ca0106_proc_dump_iec958() 114 snd_iprintf(buffer, "unknown\n"); in snd_ca0106_proc_dump_iec958() [all …]
|
/linux-6.6.21/sound/pci/hda/ |
D | hda_proc.c | 47 static void print_nid_array(struct snd_info_buffer *buffer, in print_nid_array() argument 58 snd_iprintf(buffer, in print_nid_array() 63 snd_iprintf(buffer, in print_nid_array() 74 static void print_nid_pcms(struct snd_info_buffer *buffer, in print_nid_pcms() argument 84 snd_iprintf(buffer, " Device: name=\"%s\", " in print_nid_pcms() 93 static void print_amp_caps(struct snd_info_buffer *buffer, in print_amp_caps() argument 100 snd_iprintf(buffer, "N/A\n"); in print_amp_caps() 103 snd_iprintf(buffer, "ofs=0x%02x, nsteps=0x%02x, stepsize=0x%02x, " in print_amp_caps() 133 static void print_amp_vals(struct snd_info_buffer *buffer, in print_amp_vals() argument 145 snd_iprintf(buffer, " ["); in print_amp_vals() [all …]
|
/linux-6.6.21/fs/configfs/ |
D | file.c | 56 static int fill_read_buffer(struct file *file, struct configfs_buffer *buffer) in fill_read_buffer() argument 61 if (!buffer->page) in fill_read_buffer() 62 buffer->page = (char *) get_zeroed_page(GFP_KERNEL); in fill_read_buffer() 63 if (!buffer->page) in fill_read_buffer() 68 count = buffer->attr->show(buffer->item, buffer->page); in fill_read_buffer() 75 buffer->needs_read_fill = 0; in fill_read_buffer() 76 buffer->count = count; in fill_read_buffer() 83 struct configfs_buffer *buffer = file->private_data; in configfs_read_iter() local 86 mutex_lock(&buffer->mutex); in configfs_read_iter() 87 if (buffer->needs_read_fill) { in configfs_read_iter() [all …]
|
/linux-6.6.21/include/linux/ |
D | ring_buffer.h | 64 u64 ring_buffer_event_time_stamp(struct trace_buffer *buffer, 81 void ring_buffer_discard_commit(struct trace_buffer *buffer, 101 int ring_buffer_wait(struct trace_buffer *buffer, int cpu, int full); 102 __poll_t ring_buffer_poll_wait(struct trace_buffer *buffer, int cpu, 104 void ring_buffer_wake_waiters(struct trace_buffer *buffer, int cpu); 108 void ring_buffer_free(struct trace_buffer *buffer); 110 int ring_buffer_resize(struct trace_buffer *buffer, unsigned long size, int cpu); 112 void ring_buffer_change_overwrite(struct trace_buffer *buffer, int val); 114 struct ring_buffer_event *ring_buffer_lock_reserve(struct trace_buffer *buffer, 116 int ring_buffer_unlock_commit(struct trace_buffer *buffer); [all …]
|
/linux-6.6.21/drivers/media/tuners/ |
D | tea5767.c | 133 unsigned char *buffer) in tea5767_status_dump() argument 137 if (TEA5767_READY_FLAG_MASK & buffer[0]) in tea5767_status_dump() 142 if (TEA5767_BAND_LIMIT_MASK & buffer[0]) in tea5767_status_dump() 147 div = ((buffer[0] & 0x3f) << 8) | buffer[1]; in tea5767_status_dump() 164 buffer[0] = (div >> 8) & 0x3f; in tea5767_status_dump() 165 buffer[1] = div & 0xff; in tea5767_status_dump() 170 if (TEA5767_STEREO_MASK & buffer[2]) in tea5767_status_dump() 175 tuner_info("IF Counter = %d\n", buffer[2] & TEA5767_IF_CNTR_MASK); in tea5767_status_dump() 178 (buffer[3] & TEA5767_ADC_LEVEL_MASK) >> 4); in tea5767_status_dump() 180 tuner_info("Chip ID = %d\n", (buffer[3] & TEA5767_CHIP_ID_MASK)); in tea5767_status_dump() [all …]
|
/linux-6.6.21/drivers/dma-buf/heaps/ |
D | cma_heap.c | 53 struct cma_heap_buffer *buffer = dmabuf->priv; in cma_heap_attach() local 61 ret = sg_alloc_table_from_pages(&a->table, buffer->pages, in cma_heap_attach() 62 buffer->pagecount, 0, in cma_heap_attach() 63 buffer->pagecount << PAGE_SHIFT, in cma_heap_attach() 76 mutex_lock(&buffer->lock); in cma_heap_attach() 77 list_add(&a->list, &buffer->attachments); in cma_heap_attach() 78 mutex_unlock(&buffer->lock); in cma_heap_attach() 86 struct cma_heap_buffer *buffer = dmabuf->priv; in cma_heap_detach() local 89 mutex_lock(&buffer->lock); in cma_heap_detach() 91 mutex_unlock(&buffer->lock); in cma_heap_detach() [all …]
|
D | system_heap.c | 85 struct system_heap_buffer *buffer = dmabuf->priv; in system_heap_attach() local 93 table = dup_sg_table(&buffer->sg_table); in system_heap_attach() 106 mutex_lock(&buffer->lock); in system_heap_attach() 107 list_add(&a->list, &buffer->attachments); in system_heap_attach() 108 mutex_unlock(&buffer->lock); in system_heap_attach() 116 struct system_heap_buffer *buffer = dmabuf->priv; in system_heap_detach() local 119 mutex_lock(&buffer->lock); in system_heap_detach() 121 mutex_unlock(&buffer->lock); in system_heap_detach() 156 struct system_heap_buffer *buffer = dmabuf->priv; in system_heap_dma_buf_begin_cpu_access() local 159 mutex_lock(&buffer->lock); in system_heap_dma_buf_begin_cpu_access() [all …]
|
/linux-6.6.21/drivers/pnp/ |
D | interface.c | 26 char *buffer; /* pointer to begin of buffer */ member 37 static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...) in pnp_printf() argument 42 if (buffer->stop || buffer->error) in pnp_printf() 45 res = vsnprintf(buffer->curr, buffer->len - buffer->size, fmt, args); in pnp_printf() 47 if (buffer->size + res >= buffer->len) { in pnp_printf() 48 buffer->stop = 1; in pnp_printf() 51 buffer->curr += res; in pnp_printf() 52 buffer->size += res; in pnp_printf() 56 static void pnp_print_port(pnp_info_buffer_t * buffer, char *space, in pnp_print_port() argument 59 pnp_printf(buffer, "%sport %#llx-%#llx, align %#llx, size %#llx, " in pnp_print_port() [all …]
|
/linux-6.6.21/tools/wmi/ |
D | dell-smbios-example.c | 32 static void show_buffer(struct dell_wmi_smbios_buffer *buffer) in show_buffer() argument 35 buffer->std.cmd_class, buffer->std.cmd_select, in show_buffer() 36 buffer->std.input[0], buffer->std.input[1], in show_buffer() 37 buffer->std.input[2], buffer->std.input[3], in show_buffer() 38 buffer->std.output[0], buffer->std.output[1], in show_buffer() 39 buffer->std.output[2], buffer->std.output[3]); in show_buffer() 42 static int run_wmi_smbios_cmd(struct dell_wmi_smbios_buffer *buffer) in run_wmi_smbios_cmd() argument 48 ret = ioctl(fd, DELL_WMI_SMBIOS_CMD, buffer); in run_wmi_smbios_cmd() 95 struct dell_wmi_smbios_buffer *buffer) in token_is_active() argument 99 buffer->std.cmd_class = CLASS_TOKEN_READ; in token_is_active() [all …]
|
/linux-6.6.21/drivers/android/ |
D | binder_alloc.c | 50 static struct binder_buffer *binder_buffer_next(struct binder_buffer *buffer) in binder_buffer_next() argument 52 return list_entry(buffer->entry.next, struct binder_buffer, entry); in binder_buffer_next() 55 static struct binder_buffer *binder_buffer_prev(struct binder_buffer *buffer) in binder_buffer_prev() argument 57 return list_entry(buffer->entry.prev, struct binder_buffer, entry); in binder_buffer_prev() 61 struct binder_buffer *buffer) in binder_alloc_buffer_size() argument 63 if (list_is_last(&buffer->entry, &alloc->buffers)) in binder_alloc_buffer_size() 64 return alloc->buffer + alloc->buffer_size - buffer->user_data; in binder_alloc_buffer_size() 65 return binder_buffer_next(buffer)->user_data - buffer->user_data; in binder_alloc_buffer_size() 73 struct binder_buffer *buffer; in binder_insert_free_buffer() local 87 buffer = rb_entry(parent, struct binder_buffer, rb_node); in binder_insert_free_buffer() [all …]
|
/linux-6.6.21/drivers/iio/ |
D | industrialio-buffer.c | 110 struct iio_buffer *rb = ib->buffer; in iio_buffer_read() 179 struct iio_buffer *rb = ib->buffer; in iio_buffer_write() 242 struct iio_buffer *rb = ib->buffer; in iio_buffer_poll() 268 struct iio_buffer *rb = ib->buffer; in iio_buffer_read_wrapper() 281 struct iio_buffer *rb = ib->buffer; in iio_buffer_write_wrapper() 294 struct iio_buffer *rb = ib->buffer; in iio_buffer_poll_wrapper() 313 struct iio_buffer *buffer; in iio_buffer_wakeup_poll() local 317 buffer = iio_dev_opaque->attached_buffers[i]; in iio_buffer_wakeup_poll() 318 wake_up(&buffer->pollq); in iio_buffer_wakeup_poll() 322 int iio_pop_from_buffer(struct iio_buffer *buffer, void *data) in iio_pop_from_buffer() argument [all …]
|
/linux-6.6.21/drivers/s390/net/ |
D | qeth_core_mpc.h | 18 #define QETH_IPA_PDU_LEN_TOTAL(buffer) (buffer + 0x0e) argument 19 #define QETH_IPA_PDU_LEN_PDU1(buffer) (buffer + 0x26) argument 20 #define QETH_IPA_PDU_LEN_PDU2(buffer) (buffer + 0x29) argument 21 #define QETH_IPA_PDU_LEN_PDU3(buffer) (buffer + 0x3a) argument 23 #define QETH_IPA_CMD_DEST_ADDR(buffer) (buffer + 0x2c) argument 523 char *buffer; member 877 #define QETH_CM_ENABLE_ISSUER_RM_TOKEN(buffer) (buffer + 0x2c) argument 878 #define QETH_CM_ENABLE_FILTER_TOKEN(buffer) (buffer + 0x53) argument 879 #define QETH_CM_ENABLE_USER_DATA(buffer) (buffer + 0x5b) argument 881 #define QETH_CM_ENABLE_RESP_FILTER_TOKEN(buffer) \ argument [all …]
|
/linux-6.6.21/sound/usb/ |
D | proc.c | 33 static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) in proc_audio_usbbus_read() argument 37 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum); in proc_audio_usbbus_read() 40 static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) in proc_audio_usbid_read() argument 44 snd_iprintf(buffer, "%04x:%04x\n", in proc_audio_usbid_read() 92 …ic void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer) in proc_dump_substream_formats() argument 102 snd_iprintf(buffer, " Interface %d\n", fp->iface); in proc_dump_substream_formats() 103 snd_iprintf(buffer, " Altset %d\n", fp->altsetting); in proc_dump_substream_formats() 104 snd_iprintf(buffer, " Format:"); in proc_dump_substream_formats() 107 snd_iprintf(buffer, " %s", in proc_dump_substream_formats() 109 snd_iprintf(buffer, "\n"); in proc_dump_substream_formats() [all …]
|
/linux-6.6.21/sound/pci/emu10k1/ |
D | emuproc.c | 19 struct snd_info_buffer *buffer, in snd_emu10k1_proc_spdif_status() argument 32 snd_iprintf(buffer, "\n%s\n", title); in snd_emu10k1_proc_spdif_status() 35 snd_iprintf(buffer, "Professional Mode : %s\n", (status & SPCS_PROFESSIONAL) ? "yes" : "no"); in snd_emu10k1_proc_spdif_status() 36 snd_iprintf(buffer, "Not Audio Data : %s\n", (status & SPCS_NOTAUDIODATA) ? "yes" : "no"); in snd_emu10k1_proc_spdif_status() 37 snd_iprintf(buffer, "Copyright : %s\n", (status & SPCS_COPYRIGHT) ? "yes" : "no"); in snd_emu10k1_proc_spdif_status() 38 snd_iprintf(buffer, "Emphasis : %s\n", emphasis[(status & SPCS_EMPHASISMASK) >> 3]); in snd_emu10k1_proc_spdif_status() 39 snd_iprintf(buffer, "Mode : %i\n", (status & SPCS_MODEMASK) >> 6); in snd_emu10k1_proc_spdif_status() 40 snd_iprintf(buffer, "Category Code : 0x%x\n", (status & SPCS_CATEGORYCODEMASK) >> 8); in snd_emu10k1_proc_spdif_status() 41 …snd_iprintf(buffer, "Generation Status : %s\n", status & SPCS_GENERATIONSTATUS ? "original" : … in snd_emu10k1_proc_spdif_status() 42 snd_iprintf(buffer, "Source Mask : %i\n", (status & SPCS_SOURCENUMMASK) >> 16); in snd_emu10k1_proc_spdif_status() [all …]
|
/linux-6.6.21/sound/usb/6fire/ |
D | comm.c | 22 u8 *buffer, void *context, void(*handler)(struct urb *urb)) in usb6fire_comm_init_urb() argument 25 urb->transfer_buffer = buffer; in usb6fire_comm_init_urb() 55 static void usb6fire_comm_init_buffer(u8 *buffer, u8 id, u8 request, in usb6fire_comm_init_buffer() argument 58 buffer[0] = 0x01; in usb6fire_comm_init_buffer() 59 buffer[2] = request; in usb6fire_comm_init_buffer() 60 buffer[3] = id; in usb6fire_comm_init_buffer() 63 buffer[1] = 0x05; /* length (starting at buffer[2]) */ in usb6fire_comm_init_buffer() 64 buffer[4] = reg; in usb6fire_comm_init_buffer() 65 buffer[5] = vl; in usb6fire_comm_init_buffer() 66 buffer[6] = vh; in usb6fire_comm_init_buffer() [all …]
|
/linux-6.6.21/sound/firewire/dice/ |
D | dice-proc.c | 11 static int dice_proc_read_mem(struct snd_dice *dice, void *buffer, in dice_proc_read_mem() argument 19 buffer, 4 * quadlets, 0); in dice_proc_read_mem() 24 be32_to_cpus(&((u32 *)buffer)[i]); in dice_proc_read_mem() 57 struct snd_info_buffer *buffer) in dice_proc_read() argument 119 snd_iprintf(buffer, "sections:\n"); in dice_proc_read() 121 snd_iprintf(buffer, " %s: offset %u, size %u\n", in dice_proc_read() 128 snd_iprintf(buffer, "global:\n"); in dice_proc_read() 129 snd_iprintf(buffer, " owner: %04x:%04x%08x\n", in dice_proc_read() 132 snd_iprintf(buffer, " notification: %08x\n", buf.global.notification); in dice_proc_read() 134 snd_iprintf(buffer, " nick name: %s\n", buf.global.nick_name); in dice_proc_read() [all …]
|
/linux-6.6.21/arch/riscv/include/asm/ |
D | io.h | 63 void *buffer, \ 68 ctype *buf = buffer; \ 80 const void *buffer, \ 85 const ctype *buf = buffer; \ 97 #define readsb(addr, buffer, count) __readsb(addr, buffer, count) argument 98 #define readsw(addr, buffer, count) __readsw(addr, buffer, count) argument 99 #define readsl(addr, buffer, count) __readsl(addr, buffer, count) argument 104 #define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count) argument 105 #define insw(addr, buffer, count) __insw(PCI_IOBASE + (addr), buffer, count) argument 106 #define insl(addr, buffer, count) __insl(PCI_IOBASE + (addr), buffer, count) argument [all …]
|
/linux-6.6.21/arch/sparc/boot/ |
D | piggyback.c | 104 char buffer[1024]; in get_start_end() local 111 while (fgets(buffer, 1024, map)) { in get_start_end() 112 if (start_line(buffer)) in get_start_end() 113 *start = strtoul(buffer, NULL, 16); in get_start_end() 114 else if (end_line(buffer)) in get_start_end() 115 *end = strtoul(buffer, NULL, 16); in get_start_end() 137 char buffer[BUFSIZE]; in get_hdrs_offset() local 143 if (read(kernelfd, buffer, BUFSIZE) != BUFSIZE) in get_hdrs_offset() 146 if (buffer[40] == 'H' && buffer[41] == 'd' && in get_hdrs_offset() 147 buffer[42] == 'r' && buffer[43] == 'S') { in get_hdrs_offset() [all …]
|
/linux-6.6.21/drivers/gpu/drm/nouveau/nvkm/subdev/fault/ |
D | gp100.c | 30 gp100_fault_buffer_intr(struct nvkm_fault_buffer *buffer, bool enable) in gp100_fault_buffer_intr() argument 32 struct nvkm_device *device = buffer->fault->subdev.device; in gp100_fault_buffer_intr() 37 gp100_fault_buffer_fini(struct nvkm_fault_buffer *buffer) in gp100_fault_buffer_fini() argument 39 struct nvkm_device *device = buffer->fault->subdev.device; in gp100_fault_buffer_fini() 44 gp100_fault_buffer_init(struct nvkm_fault_buffer *buffer) in gp100_fault_buffer_init() argument 46 struct nvkm_device *device = buffer->fault->subdev.device; in gp100_fault_buffer_init() 47 nvkm_wr32(device, 0x002a74, upper_32_bits(buffer->addr)); in gp100_fault_buffer_init() 48 nvkm_wr32(device, 0x002a70, lower_32_bits(buffer->addr)); in gp100_fault_buffer_init() 52 u64 gp100_fault_buffer_pin(struct nvkm_fault_buffer *buffer) in gp100_fault_buffer_pin() argument 54 return nvkm_memory_bar2(buffer->mem); in gp100_fault_buffer_pin() [all …]
|
/linux-6.6.21/drivers/gpu/drm/ |
D | drm_client.c | 265 static void drm_client_buffer_delete(struct drm_client_buffer *buffer) in drm_client_buffer_delete() argument 267 if (buffer->gem) { in drm_client_buffer_delete() 268 drm_gem_vunmap_unlocked(buffer->gem, &buffer->map); in drm_client_buffer_delete() 269 drm_gem_object_put(buffer->gem); in drm_client_buffer_delete() 272 kfree(buffer); in drm_client_buffer_delete() 282 struct drm_client_buffer *buffer; in drm_client_buffer_create() local 286 buffer = kzalloc(sizeof(*buffer), GFP_KERNEL); in drm_client_buffer_create() 287 if (!buffer) in drm_client_buffer_create() 290 buffer->client = client; in drm_client_buffer_create() 305 buffer->pitch = dumb_args.pitch; in drm_client_buffer_create() [all …]
|
/linux-6.6.21/drivers/scsi/ |
D | sr_vendor.c | 126 unsigned char *buffer; /* the buffer for the ioctl */ in sr_set_blocklength() local 134 buffer = kmalloc(512, GFP_KERNEL); in sr_set_blocklength() 135 if (!buffer) in sr_set_blocklength() 145 modesel = (struct ccs_modesel_head *) buffer; in sr_set_blocklength() 151 cgc.buffer = buffer; in sr_set_blocklength() 164 kfree(buffer); in sr_set_blocklength() 175 unsigned char *buffer; /* the buffer for the ioctl */ in sr_cd_check() local 182 buffer = kmalloc(512, GFP_KERNEL); in sr_cd_check() 183 if (!buffer) in sr_cd_check() 198 cgc.buffer = buffer; in sr_cd_check() [all …]
|
/linux-6.6.21/sound/pci/lola/ |
D | lola_proc.c | 16 static void print_audio_widget(struct snd_info_buffer *buffer, in print_audio_widget() argument 22 snd_iprintf(buffer, "Node 0x%02x %s wcaps 0x%x\n", nid, name, val); in print_audio_widget() 24 snd_iprintf(buffer, " Formats: 0x%x\n", val); in print_audio_widget() 27 static void print_pin_widget(struct snd_info_buffer *buffer, in print_pin_widget() argument 34 snd_iprintf(buffer, "Node 0x%02x %s wcaps 0x%x\n", nid, name, val); in print_pin_widget() 38 snd_iprintf(buffer, " Amp-Caps: 0x%x\n", val); in print_pin_widget() 39 snd_iprintf(buffer, " mute=%d, step-size=%d, steps=%d, ofs=%d\n", in print_pin_widget() 45 snd_iprintf(buffer, " Max-level: 0x%x\n", val); in print_pin_widget() 48 static void print_clock_widget(struct snd_info_buffer *buffer, in print_clock_widget() argument 55 snd_iprintf(buffer, "Node 0x%02x [Clock] wcaps 0x%x\n", nid, val); in print_clock_widget() [all …]
|