Home
last modified time | relevance | path

Searched refs:buffer (Results 1 - 25 of 5070) sorted by relevance

12345678910>>...203

/kernel/linux/linux-6.6/tools/testing/selftests/mm/
H A Dhmm-tests.c180 struct hmm_buffer *buffer, in hmm_dmirror_cmd()
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 in hmm_buffer_free()
178 hmm_dmirror_cmd(int fd, unsigned long request, struct hmm_buffer *buffer, unsigned long npages) hmm_dmirror_cmd() argument
268 hmm_migrate_sys_to_dev(int fd, struct hmm_buffer *buffer, unsigned long npages) hmm_migrate_sys_to_dev() argument
275 hmm_migrate_dev_to_sys(int fd, struct hmm_buffer *buffer, unsigned long npages) hmm_migrate_dev_to_sys() argument
294 struct hmm_buffer *buffer; TEST_F() local
358 struct hmm_buffer *buffer; TEST_F() local
417 struct hmm_buffer *buffer; TEST_F() local
465 struct hmm_buffer *buffer; TEST_F() local
531 struct hmm_buffer *buffer; TEST_F() local
609 struct hmm_buffer *buffer; TEST_F() local
686 struct hmm_buffer *buffer; TEST_F() local
790 struct hmm_buffer *buffer; TEST_F() local
847 struct hmm_buffer *buffer; TEST_F() local
902 struct hmm_buffer *buffer; TEST_F() local
960 struct hmm_buffer *buffer; TEST_F() local
1008 struct hmm_buffer *buffer; TEST_F() local
1064 struct hmm_buffer *buffer; TEST_F() local
1116 struct hmm_buffer *buffer; TEST_F() local
1151 struct hmm_buffer *buffer; TEST_F() local
1243 struct hmm_buffer *buffer; TEST_F() local
1302 struct hmm_buffer *buffer; TEST_F() local
1350 struct hmm_buffer *buffer = p; unmap_buffer() local
1376 struct hmm_buffer *buffer; TEST_F() local
1426 struct hmm_buffer *buffer; TEST_F() local
1468 struct hmm_buffer *buffer; TEST_F() local
1570 struct hmm_buffer *buffer; TEST_F() local
1645 struct hmm_buffer *buffer; TEST_F() local
1720 struct hmm_buffer *buffer; TEST_F() local
1774 struct hmm_buffer *buffer; TEST_F() local
1827 struct hmm_buffer *buffer; TEST_F() local
1900 struct hmm_buffer *buffer; TEST_F() local
1989 struct hmm_buffer *buffer; TEST_F() local
[all...]
/kernel/linux/linux-5.10/drivers/s390/char/
H A Dsclp_rw.c42 * Setup a sclp write buffer. Gets a page as input (4K) and returns
44 * end of the input page. This reduces the buffer space by a few
50 struct sclp_buffer *buffer; in sclp_make_buffer() local
58 buffer = ((struct sclp_buffer *) ((addr_t) sccb + PAGE_SIZE)) - 1; in sclp_make_buffer()
59 buffer->sccb = sccb; in sclp_make_buffer()
60 buffer->retry_count = 0; in sclp_make_buffer()
61 buffer->messages = 0; in sclp_make_buffer()
62 buffer->char_sum = 0; in sclp_make_buffer()
63 buffer->current_line = NULL; in sclp_make_buffer()
64 buffer in sclp_make_buffer()
80 sclp_unmake_buffer(struct sclp_buffer *buffer) sclp_unmake_buffer() argument
90 sclp_initialize_mto(struct sclp_buffer *buffer, int max_len) sclp_initialize_mto() argument
140 sclp_finalize_mto(struct sclp_buffer *buffer) sclp_finalize_mto() argument
177 sclp_write(struct sclp_buffer *buffer, const unsigned char *msg, int count) sclp_write() argument
313 sclp_buffer_space(struct sclp_buffer *buffer) sclp_buffer_space() argument
329 sclp_chars_in_buffer(struct sclp_buffer *buffer) sclp_chars_in_buffer() argument
367 struct sclp_buffer *buffer; sclp_writedata_callback() local
432 sclp_emit_buffer(struct sclp_buffer *buffer, void (*callback)(struct sclp_buffer *, int)) sclp_emit_buffer() argument
[all...]
/kernel/linux/linux-6.6/drivers/s390/char/
H A Dsclp_rw.c35 * Setup a sclp write buffer. Gets a page as input (4K) and returns
37 * end of the input page. This reduces the buffer space by a few
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 in sclp_make_buffer()
73 sclp_unmake_buffer(struct sclp_buffer *buffer) sclp_unmake_buffer() argument
83 sclp_initialize_mto(struct sclp_buffer *buffer, int max_len) sclp_initialize_mto() argument
133 sclp_finalize_mto(struct sclp_buffer *buffer) sclp_finalize_mto() argument
170 sclp_write(struct sclp_buffer *buffer, const unsigned char *msg, int count) sclp_write() argument
306 sclp_buffer_space(struct sclp_buffer *buffer) sclp_buffer_space() argument
322 sclp_chars_in_buffer(struct sclp_buffer *buffer) sclp_chars_in_buffer() argument
360 struct sclp_buffer *buffer; sclp_writedata_callback() local
425 sclp_emit_buffer(struct sclp_buffer *buffer, void (*callback)(struct sclp_buffer *, int)) sclp_emit_buffer() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/etnaviv/
H A Detnaviv_buffer.c25 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_STAT in CMD_LOAD_STATE()
49 CMD_END(struct etnaviv_cmdbuf *buffer) CMD_END() argument
56 CMD_WAIT(struct etnaviv_cmdbuf *buffer) CMD_WAIT() argument
63 CMD_LINK(struct etnaviv_cmdbuf *buffer, u16 prefetch, u32 address) CMD_LINK() argument
73 CMD_STALL(struct etnaviv_cmdbuf *buffer, u32 from, u32 to) CMD_STALL() argument
82 CMD_SEM(struct etnaviv_cmdbuf *buffer, u32 from, u32 to) CMD_SEM() argument
89 etnaviv_cmd_select_pipe(struct etnaviv_gpu *gpu, struct etnaviv_cmdbuf *buffer, u8 pipe) etnaviv_cmd_select_pipe() argument
136 etnaviv_buffer_replace_wait(struct etnaviv_cmdbuf *buffer, unsigned int wl_offset, u32 cmd, u32 arg) etnaviv_buffer_replace_wait() argument
151 etnaviv_buffer_reserve(struct etnaviv_gpu *gpu, struct etnaviv_cmdbuf *buffer, unsigned int cmd_dwords) etnaviv_buffer_reserve() argument
164 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_init() local
181 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_config_mmuv2() local
216 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_config_pta() local
234 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_end() local
302 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_sync_point_queue() local
343 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_queue() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/etnaviv/
H A Detnaviv_buffer.c25 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_STAT in CMD_LOAD_STATE()
49 CMD_END(struct etnaviv_cmdbuf *buffer) CMD_END() argument
56 CMD_WAIT(struct etnaviv_cmdbuf *buffer, unsigned int waitcycles) CMD_WAIT() argument
64 CMD_LINK(struct etnaviv_cmdbuf *buffer, u16 prefetch, u32 address) CMD_LINK() argument
74 CMD_STALL(struct etnaviv_cmdbuf *buffer, u32 from, u32 to) CMD_STALL() argument
83 CMD_SEM(struct etnaviv_cmdbuf *buffer, u32 from, u32 to) CMD_SEM() argument
90 etnaviv_cmd_select_pipe(struct etnaviv_gpu *gpu, struct etnaviv_cmdbuf *buffer, u8 pipe) etnaviv_cmd_select_pipe() argument
137 etnaviv_buffer_replace_wait(struct etnaviv_cmdbuf *buffer, unsigned int wl_offset, u32 cmd, u32 arg) etnaviv_buffer_replace_wait() argument
152 etnaviv_buffer_reserve(struct etnaviv_gpu *gpu, struct etnaviv_cmdbuf *buffer, unsigned int cmd_dwords) etnaviv_buffer_reserve() argument
165 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_init() local
182 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_config_mmuv2() local
217 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_config_pta() local
235 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_end() local
303 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_sync_point_queue() local
344 struct etnaviv_cmdbuf *buffer = &gpu->buffer; etnaviv_buffer_queue() local
[all...]
/kernel/linux/linux-5.10/sound/pci/ca0106/
H A Dca0106_proc.c15 * Use separate card based DMA buffer for periods table list.
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, "3200 in snd_ca0106_proc_dump_iec958()
258 snd_ca0106_proc_iec958(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_iec958() argument
280 snd_ca0106_proc_reg_write32(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_write32() argument
298 snd_ca0106_proc_reg_read32(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read32() argument
314 snd_ca0106_proc_reg_read16(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read16() argument
330 snd_ca0106_proc_reg_read8(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read8() argument
346 snd_ca0106_proc_reg_read1(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read1() argument
364 snd_ca0106_proc_reg_read2(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read2() argument
382 snd_ca0106_proc_reg_write(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_write() argument
396 snd_ca0106_proc_i2c_write(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_i2c_write() argument
[all...]
/kernel/linux/linux-6.6/sound/pci/ca0106/
H A Dca0106_proc.c15 * Use separate card based DMA buffer for periods table list.
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, "3200 in snd_ca0106_proc_dump_iec958()
258 snd_ca0106_proc_iec958(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_iec958() argument
280 snd_ca0106_proc_reg_write32(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_write32() argument
298 snd_ca0106_proc_reg_read32(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read32() argument
314 snd_ca0106_proc_reg_read16(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read16() argument
330 snd_ca0106_proc_reg_read8(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read8() argument
346 snd_ca0106_proc_reg_read1(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read1() argument
364 snd_ca0106_proc_reg_read2(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_read2() argument
382 snd_ca0106_proc_reg_write(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_reg_write() argument
396 snd_ca0106_proc_i2c_write(struct snd_info_entry *entry, struct snd_info_buffer *buffer) snd_ca0106_proc_i2c_write() argument
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/vm/
H A Dhmm-tests.c122 struct hmm_buffer *buffer, in hmm_dmirror_cmd()
129 cmd.addr = (__u64)buffer->ptr; in hmm_dmirror_cmd()
130 cmd.ptr = (__u64)buffer->mirror; in hmm_dmirror_cmd()
141 buffer->cpages = cmd.cpages; in hmm_dmirror_cmd()
142 buffer->faults = cmd.faults; in hmm_dmirror_cmd()
147 static void hmm_buffer_free(struct hmm_buffer *buffer) in hmm_buffer_free() argument
149 if (buffer == NULL) in hmm_buffer_free()
152 if (buffer->ptr) in hmm_buffer_free()
153 munmap(buffer->ptr, buffer in hmm_buffer_free()
120 hmm_dmirror_cmd(int fd, unsigned long request, struct hmm_buffer *buffer, unsigned long npages) hmm_dmirror_cmd() argument
222 struct hmm_buffer *buffer; TEST_F() local
286 struct hmm_buffer *buffer; TEST_F() local
345 struct hmm_buffer *buffer; TEST_F() local
393 struct hmm_buffer *buffer; TEST_F() local
459 struct hmm_buffer *buffer; TEST_F() local
537 struct hmm_buffer *buffer; TEST_F() local
614 struct hmm_buffer *buffer; TEST_F() local
670 struct hmm_buffer *buffer; TEST_F() local
729 struct hmm_buffer *buffer; TEST_F() local
784 struct hmm_buffer *buffer; TEST_F() local
842 struct hmm_buffer *buffer; TEST_F() local
890 struct hmm_buffer *buffer; TEST_F() local
949 struct hmm_buffer *buffer; TEST_F() local
984 struct hmm_buffer *buffer; TEST_F() local
1072 struct hmm_buffer *buffer; TEST_F() local
1126 struct hmm_buffer *buffer; TEST_F() local
1174 struct hmm_buffer *buffer = p; unmap_buffer() local
1200 struct hmm_buffer *buffer; TEST_F() local
1250 struct hmm_buffer *buffer; TEST_F() local
1292 struct hmm_buffer *buffer; TEST_F() local
1387 struct hmm_buffer *buffer; TEST_F() local
1462 struct hmm_buffer *buffer; TEST_F() local
[all...]
/kernel/linux/linux-6.6/sound/pci/hda/
H A Dhda_proc.c47 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()
161 print_pcm_rates(struct snd_info_buffer *buffer, unsigned int pcm) print_pcm_rates() argument
177 print_pcm_bits(struct snd_info_buffer *buffer, unsigned int pcm) print_pcm_bits() argument
186 print_pcm_formats(struct snd_info_buffer *buffer, unsigned int streams) print_pcm_formats() argument
199 print_pcm_caps(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_pcm_caps() argument
304 print_pin_caps(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, int *supports_vref) print_pin_caps() argument
400 print_pin_ctls(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, int supports_vref) print_pin_ctls() argument
438 print_vol_knob(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_vol_knob() argument
450 print_audio_io(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, unsigned int wid_type) print_audio_io() argument
468 print_digital_conv(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_digital_conv() argument
512 print_power_state(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_power_state() argument
553 print_unsol_cap(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_unsol_cap() argument
573 print_proc_caps(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_proc_caps() argument
598 print_conn_list(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, unsigned int wid_type, hda_nid_t *conn, int conn_len) print_conn_list() argument
638 print_gpio(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_gpio() argument
682 print_dpmst_connections(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, int dev_num) print_dpmst_connections() argument
714 print_device_list(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_device_list() argument
748 print_codec_core_info(struct hdac_device *codec, struct snd_info_buffer *buffer) print_codec_core_info() argument
774 print_codec_info(struct snd_info_entry *entry, struct snd_info_buffer *buffer) print_codec_info() argument
[all...]
/kernel/linux/linux-5.10/sound/pci/hda/
H A Dhda_proc.c47 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()
161 print_pcm_rates(struct snd_info_buffer *buffer, unsigned int pcm) print_pcm_rates() argument
177 print_pcm_bits(struct snd_info_buffer *buffer, unsigned int pcm) print_pcm_bits() argument
186 print_pcm_formats(struct snd_info_buffer *buffer, unsigned int streams) print_pcm_formats() argument
199 print_pcm_caps(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_pcm_caps() argument
304 print_pin_caps(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, int *supports_vref) print_pin_caps() argument
400 print_pin_ctls(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, int supports_vref) print_pin_ctls() argument
438 print_vol_knob(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_vol_knob() argument
450 print_audio_io(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, unsigned int wid_type) print_audio_io() argument
468 print_digital_conv(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_digital_conv() argument
512 print_power_state(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_power_state() argument
553 print_unsol_cap(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_unsol_cap() argument
573 print_proc_caps(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_proc_caps() argument
598 print_conn_list(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid, unsigned int wid_type, hda_nid_t *conn, int conn_len) print_conn_list() argument
638 print_gpio(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_gpio() argument
682 print_device_list(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid) print_device_list() argument
712 print_codec_core_info(struct hdac_device *codec, struct snd_info_buffer *buffer) print_codec_core_info() argument
738 print_codec_info(struct snd_info_entry *entry, struct snd_info_buffer *buffer) print_codec_info() argument
[all...]
/kernel/linux/linux-5.10/fs/configfs/
H A Dfile.c58 static int fill_read_buffer(struct file *file, struct configfs_buffer *buffer) in fill_read_buffer() argument
63 if (!buffer->page) in fill_read_buffer()
64 buffer->page = (char *) get_zeroed_page(GFP_KERNEL); in fill_read_buffer()
65 if (!buffer->page) in fill_read_buffer()
70 count = buffer->attr->show(buffer->item, buffer->page); in fill_read_buffer()
77 buffer->needs_read_fill = 0; in fill_read_buffer()
78 buffer->count = count; in fill_read_buffer()
85 * @buf: buffer t
104 struct configfs_buffer *buffer = file->private_data; configfs_read_file() local
147 struct configfs_buffer *buffer = file->private_data; configfs_read_bin_file() local
224 fill_write_buffer(struct configfs_buffer * buffer, const char __user * buf, size_t count) fill_write_buffer() argument
244 flush_write_buffer(struct file *file, struct configfs_buffer *buffer, size_t count) flush_write_buffer() argument
277 struct configfs_buffer *buffer = file->private_data; configfs_write_file() local
307 struct configfs_buffer *buffer = file->private_data; configfs_write_bin_file() local
361 struct configfs_buffer *buffer; __configfs_open_file() local
447 struct configfs_buffer *buffer = filp->private_data; configfs_release() local
469 struct configfs_buffer *buffer = file->private_data; configfs_release_bin_file() local
[all...]
/kernel/linux/linux-6.6/fs/configfs/
H A Dfile.c56 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 in configfs_read_iter() local
110 struct configfs_buffer *buffer = file->private_data; configfs_bin_read_iter() local
181 fill_write_buffer(struct configfs_buffer *buffer, struct iov_iter *from) fill_write_buffer() argument
200 flush_write_buffer(struct file *file, struct configfs_buffer *buffer, size_t count) flush_write_buffer() argument
223 struct configfs_buffer *buffer = file->private_data; configfs_write_iter() local
240 struct configfs_buffer *buffer = file->private_data; configfs_bin_write_iter() local
295 struct configfs_buffer *buffer; __configfs_open_file() local
381 struct configfs_buffer *buffer = filp->private_data; configfs_release() local
403 struct configfs_buffer *buffer = file->private_data; configfs_release_bin_file() local
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dring_buffer.h22 * enum ring_buffer_type - internal ring buffer types
64 u64 ring_buffer_event_time_stamp(struct trace_buffer *buffer,
71 * will try to remove the event from the ring buffer completely
77 * ring_buffer_discard_commit(buffer, event);
79 * ring_buffer_unlock_commit(buffer, event);
81 void ring_buffer_discard_commit(struct trace_buffer *buffer,
85 * size is in bytes for each per CPU buffer.
91 * Because the ring buffer is generic, if other users of the ring buffer get
93 * ring buffer'
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dring_buffer.h22 * enum ring_buffer_type - internal ring buffer types
70 * will try to remove the event from the ring buffer completely
76 * ring_buffer_discard_commit(buffer, event);
78 * ring_buffer_unlock_commit(buffer, event);
80 void ring_buffer_discard_commit(struct trace_buffer *buffer,
84 * size is in bytes for each per CPU buffer.
90 * Because the ring buffer is generic, if other users of the ring buffer get
92 * ring buffer's lock class separate.
100 int ring_buffer_wait(struct trace_buffer *buffer, in
[all...]
/kernel/linux/linux-5.10/drivers/dma-buf/heaps/
H A Dheap-helpers.c15 void init_heap_helper_buffer(struct heap_helper_buffer *buffer, in init_heap_helper_buffer() argument
18 buffer->priv_virt = NULL; in init_heap_helper_buffer()
19 mutex_init(&buffer->lock); in init_heap_helper_buffer()
20 buffer->vmap_cnt = 0; in init_heap_helper_buffer()
21 buffer->vaddr = NULL; in init_heap_helper_buffer()
22 buffer->pagecount = 0; in init_heap_helper_buffer()
23 buffer->pages = NULL; in init_heap_helper_buffer()
24 INIT_LIST_HEAD(&buffer->attachments); in init_heap_helper_buffer()
25 buffer->free = free; in init_heap_helper_buffer()
28 struct dma_buf *heap_helper_export_dmabuf(struct heap_helper_buffer *buffer, in heap_helper_export_dmabuf() argument
42 dma_heap_map_kernel(struct heap_helper_buffer *buffer) dma_heap_map_kernel() argument
53 dma_heap_buffer_destroy(struct heap_helper_buffer *buffer) dma_heap_buffer_destroy() argument
63 dma_heap_buffer_vmap_get(struct heap_helper_buffer *buffer) dma_heap_buffer_vmap_get() argument
79 dma_heap_buffer_vmap_put(struct heap_helper_buffer *buffer) dma_heap_buffer_vmap_put() argument
97 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_attach() local
129 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_detach() local
163 struct heap_helper_buffer *buffer = vma->vm_private_data; dma_heap_vm_fault() local
180 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_mmap() local
193 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_dma_buf_release() local
201 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_dma_buf_begin_cpu_access() local
222 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_dma_buf_end_cpu_access() local
241 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_dma_buf_vmap() local
253 struct heap_helper_buffer *buffer = dmabuf->priv; dma_heap_dma_buf_vunmap() local
[all...]
/kernel/linux/linux-5.10/drivers/media/tuners/
H A Dtea5767.c133 unsigned char *buffer) in tea5767_status_dump()
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[ in tea5767_status_dump()
132 tea5767_status_dump(struct tea5767_priv *priv, unsigned char *buffer) tea5767_status_dump() argument
192 unsigned char buffer[5]; set_radio_freq() local
284 tea5767_read_status(struct dvb_frontend *fe, char *buffer) tea5767_read_status() argument
298 tea5767_signal(struct dvb_frontend *fe, const char *buffer) tea5767_signal() argument
309 tea5767_stereo(struct dvb_frontend *fe, const char *buffer) tea5767_stereo() argument
322 unsigned char buffer[5]; tea5767_get_status() local
338 unsigned char buffer[5]; tea5767_get_rf_strength() local
350 unsigned char buffer[5]; tea5767_standby() local
371 unsigned char buffer[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; tea5767_autodetection() local
[all...]
/kernel/linux/linux-6.6/drivers/media/tuners/
H A Dtea5767.c133 unsigned char *buffer) in tea5767_status_dump()
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[ in tea5767_status_dump()
132 tea5767_status_dump(struct tea5767_priv *priv, unsigned char *buffer) tea5767_status_dump() argument
192 unsigned char buffer[5]; set_radio_freq() local
284 tea5767_read_status(struct dvb_frontend *fe, char *buffer) tea5767_read_status() argument
298 tea5767_signal(struct dvb_frontend *fe, const char *buffer) tea5767_signal() argument
309 tea5767_stereo(struct dvb_frontend *fe, const char *buffer) tea5767_stereo() argument
322 unsigned char buffer[5]; tea5767_get_status() local
338 unsigned char buffer[5]; tea5767_get_rf_strength() local
350 unsigned char buffer[5]; tea5767_standby() local
371 unsigned char buffer[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; tea5767_autodetection() local
[all...]
/kernel/linux/linux-5.10/drivers/iio/
H A Dindustrialio-buffer.c6 * Handling of buffer allocation / resizing.
26 #include <linux/iio/buffer.h>
63 /* drain the buffer if it was disabled */ in iio_buffer_ready()
92 * iio_buffer_read_outer() - chrdev read for buffer access
94 * @buf: Destination buffer for iio buffer read
98 * This function relies on all buffer implementations having an
108 struct iio_buffer *rb = indio_dev->buffer; in iio_buffer_read_outer()
124 * buffer, so signal end of file now. in iio_buffer_read_outer()
162 * iio_buffer_poll() - poll the buffer t
194 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_wakeup_poll() local
202 iio_buffer_init(struct iio_buffer *buffer) iio_buffer_init() argument
218 iio_buffer_set_attrs(struct iio_buffer *buffer, const struct attribute **attrs) iio_buffer_set_attrs() argument
269 struct iio_buffer *buffer = indio_dev->buffer; iio_scan_el_show() local
318 iio_scan_mask_set(struct iio_dev *indio_dev, struct iio_buffer *buffer, int bit) iio_scan_mask_set() argument
355 iio_scan_mask_clear(struct iio_buffer *buffer, int bit) iio_scan_mask_clear() argument
361 iio_scan_mask_query(struct iio_dev *indio_dev, struct iio_buffer *buffer, int bit) iio_scan_mask_query() argument
382 struct iio_buffer *buffer = indio_dev->buffer; iio_scan_el_store() local
418 struct iio_buffer *buffer = indio_dev->buffer; iio_scan_el_ts_show() local
430 struct iio_buffer *buffer = indio_dev->buffer; iio_scan_el_ts_store() local
449 iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev, struct iio_buffer *buffer, const struct iio_chan_spec *chan) iio_buffer_add_channel_sysfs() argument
507 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_read_length() local
517 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_write_length() local
550 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_show_enable() local
600 iio_buffer_activate(struct iio_dev *indio_dev, struct iio_buffer *buffer) iio_buffer_activate() argument
609 iio_buffer_deactivate(struct iio_buffer *buffer) iio_buffer_deactivate() argument
619 struct iio_buffer *buffer, *_buffer; iio_buffer_deactivate_all() local
626 iio_buffer_enable(struct iio_buffer *buffer, struct iio_dev *indio_dev) iio_buffer_enable() argument
634 iio_buffer_disable(struct iio_buffer *buffer, struct iio_dev *indio_dev) iio_buffer_disable() argument
642 iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev, struct iio_buffer *buffer) iio_buffer_update_bytes_per_datum() argument
656 iio_buffer_request_update(struct iio_dev *indio_dev, struct iio_buffer *buffer) iio_buffer_request_update() argument
699 struct iio_buffer *buffer; iio_verify_update() local
812 iio_buffer_demux_free(struct iio_buffer *buffer) iio_buffer_demux_free() argument
821 iio_buffer_add_demux(struct iio_buffer *buffer, struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc, unsigned int length) iio_buffer_add_demux() argument
842 iio_buffer_update_demux(struct iio_dev *indio_dev, struct iio_buffer *buffer) iio_buffer_update_demux() argument
911 struct iio_buffer *buffer; iio_update_demux() local
932 struct iio_buffer *buffer; iio_enable_buffers() local
1014 struct iio_buffer *buffer; iio_disable_buffers() local
1165 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_store_enable() local
1197 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_show_watermark() local
1208 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_store_watermark() local
1242 struct iio_buffer *buffer = indio_dev->buffer; iio_dma_show_data_available() local
1267 __iio_buffer_alloc_sysfs_and_mask(struct iio_buffer *buffer, struct iio_dev *indio_dev) __iio_buffer_alloc_sysfs_and_mask() argument
1360 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_alloc_sysfs_and_mask() local
1379 __iio_buffer_free_sysfs_and_mask(struct iio_buffer *buffer) __iio_buffer_free_sysfs_and_mask() argument
1389 struct iio_buffer *buffer = indio_dev->buffer; iio_buffer_free_sysfs_and_mask() local
1413 iio_demux(struct iio_buffer *buffer, const void *datain) iio_demux() argument
1427 iio_push_to_buffer(struct iio_buffer *buffer, const void *data) iio_push_to_buffer() argument
1476 struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref); iio_buffer_release() local
1487 iio_buffer_get(struct iio_buffer *buffer) iio_buffer_get() argument
1500 iio_buffer_put(struct iio_buffer *buffer) iio_buffer_put() argument
1516 iio_device_attach_buffer(struct iio_dev *indio_dev, struct iio_buffer *buffer) iio_device_attach_buffer() argument
[all...]
/kernel/linux/linux-5.10/tools/wmi/
H A Ddell-smbios-example.c32 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 in show_buffer()
42 run_wmi_smbios_cmd(struct dell_wmi_smbios_buffer *buffer) run_wmi_smbios_cmd() argument
94 token_is_active(__u16 *location, __u16 *cmpvalue, struct dell_wmi_smbios_buffer *buffer) token_is_active() argument
109 query_token(__u16 token, struct dell_wmi_smbios_buffer *buffer) query_token() argument
123 activate_token(struct dell_wmi_smbios_buffer *buffer, __u16 token) activate_token() argument
157 struct dell_wmi_smbios_buffer *buffer; main() local
[all...]
/kernel/linux/linux-6.6/tools/wmi/
H A Ddell-smbios-example.c32 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 in show_buffer()
42 run_wmi_smbios_cmd(struct dell_wmi_smbios_buffer *buffer) run_wmi_smbios_cmd() argument
94 token_is_active(__u16 *location, __u16 *cmpvalue, struct dell_wmi_smbios_buffer *buffer) token_is_active() argument
109 query_token(__u16 token, struct dell_wmi_smbios_buffer *buffer) query_token() argument
123 activate_token(struct dell_wmi_smbios_buffer *buffer, __u16 token) activate_token() argument
157 struct dell_wmi_smbios_buffer *buffer; main() local
[all...]
/kernel/linux/linux-6.6/sound/usb/
H A Dproc.c33 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 static 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, "\ in proc_dump_substream_formats()
172 proc_dump_ep_status(struct snd_usb_substream *subs, struct snd_usb_endpoint *data_ep, struct snd_usb_endpoint *sync_ep, struct snd_info_buffer *buffer) proc_dump_ep_status() argument
192 proc_dump_substream_status(struct snd_usb_audio *chip, struct snd_usb_substream *subs, struct snd_info_buffer *buffer) proc_dump_substream_status() argument
210 proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) proc_pcm_format_read() argument
[all...]
/kernel/linux/linux-5.10/sound/firewire/dice/
H A Ddice-proc.c11 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()
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, " nic in dice_proc_read()
56 dice_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) dice_proc_read() argument
245 dice_proc_read_formation(struct snd_info_entry *entry, struct snd_info_buffer *buffer) dice_proc_read_formation() argument
279 add_node(struct snd_dice *dice, struct snd_info_entry *root, const char *name, void (*op)(struct snd_info_entry *entry, struct snd_info_buffer *buffer)) add_node() argument
[all...]
/kernel/linux/linux-6.6/sound/firewire/dice/
H A Ddice-proc.c11 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()
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, " nic in dice_proc_read()
56 dice_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) dice_proc_read() argument
245 dice_proc_read_formation(struct snd_info_entry *entry, struct snd_info_buffer *buffer) dice_proc_read_formation() argument
279 add_node(struct snd_dice *dice, struct snd_info_entry *root, const char *name, void (*op)(struct snd_info_entry *entry, struct snd_info_buffer *buffer)) add_node() argument
[all...]
/kernel/linux/linux-6.6/drivers/pnp/
H A Dinterface.c26 char *buffer; /* pointer to begin of buffer */ member
27 char *curr; /* current position in buffer */
29 unsigned long len; /* total length of buffer */
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 in pnp_printf()
56 pnp_print_port(pnp_info_buffer_t * buffer, char *space, struct pnp_port *port) pnp_print_port() argument
68 pnp_print_irq(pnp_info_buffer_t * buffer, char *space, struct pnp_irq *irq) pnp_print_irq() argument
101 pnp_print_dma(pnp_info_buffer_t * buffer, char *space, struct pnp_dma *dma) pnp_print_dma() argument
153 pnp_print_mem(pnp_info_buffer_t * buffer, char *space, struct pnp_mem *mem) pnp_print_mem() argument
189 pnp_print_option(pnp_info_buffer_t * buffer, char *space, struct pnp_option *option) pnp_print_option() argument
212 pnp_info_buffer_t *buffer; options_show() local
252 pnp_info_buffer_t *buffer; resources_show() local
[all...]
/kernel/linux/linux-5.10/drivers/pnp/
H A Dinterface.c26 char *buffer; /* pointer to begin of buffer */ member
27 char *curr; /* current position in buffer */
29 unsigned long len; /* total length of buffer */
36 static int pnp_printf(pnp_info_buffer_t * buffer, char *fmt, ...) in pnp_printf() argument
41 if (buffer->stop || buffer->error) in pnp_printf()
44 res = vsnprintf(buffer->curr, buffer->len - buffer in pnp_printf()
55 pnp_print_port(pnp_info_buffer_t * buffer, char *space, struct pnp_port *port) pnp_print_port() argument
67 pnp_print_irq(pnp_info_buffer_t * buffer, char *space, struct pnp_irq *irq) pnp_print_irq() argument
100 pnp_print_dma(pnp_info_buffer_t * buffer, char *space, struct pnp_dma *dma) pnp_print_dma() argument
152 pnp_print_mem(pnp_info_buffer_t * buffer, char *space, struct pnp_mem *mem) pnp_print_mem() argument
188 pnp_print_option(pnp_info_buffer_t * buffer, char *space, struct pnp_option *option) pnp_print_option() argument
211 pnp_info_buffer_t *buffer; options_show() local
251 pnp_info_buffer_t *buffer; resources_show() local
[all...]

Completed in 15 milliseconds

12345678910>>...203