Searched refs:buf (Results 101 - 125 of 3765) sorted by relevance

1234567891011>>

/drivers/media/usb/dvb-usb/
H A Ddib0700_core.c41 st->buf, 16, USB_CTRL_GET_TIMEOUT);
43 *hwversion = (st->buf[0] << 24) | (st->buf[1] << 16) |
44 (st->buf[2] << 8) | st->buf[3];
46 *romversion = (st->buf[4] << 24) | (st->buf[5] << 16) |
47 (st->buf[6] << 8) | st->buf[7];
49 *ramversion = (st->buf[
444 u8 *buf; local
476 u8 *buf; local
[all...]
/drivers/pnp/
H A Dinterface.c207 char *buf)
220 buffer->buffer = buf;
240 ret = (buffer->curr - buf);
247 struct device_attribute *attr, char *buf)
263 buffer->buffer = buf;
296 ret = (buffer->curr - buf);
301 static char *pnp_get_resource_value(char *buf, argument
316 buf = skip_spaces(buf);
318 *start = simple_strtoull(buf,
206 options_show(struct device *dmdev, struct device_attribute *attr, char *buf) argument
246 resources_show(struct device *dmdev, struct device_attribute *attr, char *buf) argument
339 char *buf = (void *)ubuf; local
439 id_show(struct device *dmdev, struct device_attribute *attr, char *buf) argument
[all...]
/drivers/media/common/b2c2/
H A Dflexcop-eeprom.c10 static int eeprom_write(struct adapter *adapter, u16 addr, u8 *buf, u16 len)
12 return flex_i2c_write(adapter, 0x20000000, 0x50, addr, buf, len);
49 u8 buf[20];
54 if (eeprom_lrc_read(adapter, 0x3e4, 20, buf, 4) == 0)
57 memcpy(key, buf, len);
90 u16 addr, u8 *buf, u16 len)
92 return fc->i2c_request(fc,FC_READ,FC_I2C_PORT_EEPROM,0x50,addr,buf,len);
97 static u8 calc_lrc(u8 *buf, int len) argument
102 sum = sum ^ buf[i];
107 flexcop_access_op_t op, u16 addr, u8 *buf, u1
106 flexcop_eeprom_request(struct flexcop_device *fc, flexcop_access_op_t op, u16 addr, u8 *buf, u16 len, int retries) argument
120 flexcop_eeprom_lrc_read(struct flexcop_device *fc, u16 addr, u8 *buf, u16 len, int retries) argument
134 u8 buf[8]; local
[all...]
/drivers/remoteproc/
H A Dremoteproc_debugfs.c80 char buf[30]; local
85 i = scnprintf(buf, 30, "%.28s (%d)\n", rproc_state_string[state],
88 return simple_read_from_buffer(userbuf, count, ppos, buf, i);
103 char buf[100]; local
106 i = scnprintf(buf, sizeof(buf), "%.98s\n", rproc->name);
108 return simple_read_from_buffer(userbuf, count, ppos, buf, i);
122 char *buf = rproc->recovery_disabled ? "disabled\n" : "enabled\n"; local
124 return simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
156 char buf[10]; local
[all...]
/drivers/scsi/fnic/
H A Dvnic_rq.h136 struct vnic_rq_buf *buf = rq->to_use; local
138 buf->os_buf = os_buf;
139 buf->os_buf_index = os_buf_index;
140 buf->dma_addr = dma_addr;
141 buf->len = len;
143 buf = buf->next;
144 rq->to_use = buf;
154 if ((buf->index & VNIC_RQ_RETURN_RATE) == 0) {
161 iowrite32(buf
180 vnic_rq_service(struct vnic_rq *rq, struct cq_desc *cq_desc, u16 completed_index, int desc_return, void (*buf_service)(struct vnic_rq *rq, struct cq_desc *cq_desc, struct vnic_rq_buf *buf, int skipped, void *opaque), void *opaque) argument
186 struct vnic_rq_buf *buf; local
[all...]
/drivers/video/adf/
H A Dadf_memblock.c15 #include <linux/dma-buf.h>
65 static void __init_memblock adf_memblock_release(struct dma_buf *buf) argument
67 struct adf_memblock_pdata *pdata = buf->priv;
68 int err = memblock_free(pdata->base, buf->size);
75 static void *adf_memblock_do_kmap(struct dma_buf *buf, unsigned long pgoffset, argument
78 struct adf_memblock_pdata *pdata = buf->priv;
88 static void *adf_memblock_kmap_atomic(struct dma_buf *buf, argument
91 return adf_memblock_do_kmap(buf, pgoffset, true);
94 static void adf_memblock_kunmap_atomic(struct dma_buf *buf, argument
100 static void *adf_memblock_kmap(struct dma_buf *buf, unsigne argument
105 adf_memblock_kunmap(struct dma_buf *buf, unsigned long pgoffset, void *vaddr) argument
111 adf_memblock_mmap(struct dma_buf *buf, struct vm_area_struct *vma) argument
144 struct dma_buf *buf; local
[all...]
/drivers/mtd/
H A Dredboot.c64 struct fis_image_desc *buf; local
97 buf = vmalloc(master->erasesize);
99 if (!buf)
106 (void *)buf);
118 if (!memcmp(buf[i].name, "FIS directory", 14)) {
121 * one erase block; if the buf[i].size field is
134 if (swab32(buf[i].size) == master->erasesize ||
135 (buf[i].size > master->erasesize
136 && swab32(buf[i].size) < master->erasesize)) {
139 numslots = swab32(buf[
[all...]
/drivers/rtc/
H A Drtc-ab3100.c50 unsigned char buf[6]; local
55 buf[0] = (fat_time) & 0xFF;
56 buf[1] = (fat_time >> 8) & 0xFF;
57 buf[2] = (fat_time >> 16) & 0xFF;
58 buf[3] = (fat_time >> 24) & 0xFF;
59 buf[4] = (fat_time >> 32) & 0xFF;
60 buf[5] = (fat_time >> 40) & 0xFF;
64 regs[i], buf[i]);
92 u8 buf[6]; local
97 buf,
117 u8 buf[6]; local
149 unsigned char buf[4]; local
[all...]
/drivers/staging/lustre/lustre/include/
H A Dlustre_param.h58 int class_find_param(char *buf, char *key, char **valp);
62 int class_match_param(char *buf, char *key, char **valp);
63 int class_parse_nid(char *buf, lnet_nid_t *nid, char **endh);
64 int class_parse_nid_quiet(char *buf, lnet_nid_t *nid, char **endh);
65 int class_parse_net(char *buf, __u32 *net, char **endh);
66 int class_match_nid(char *buf, char *key, lnet_nid_t nid);
67 int class_match_net(char *buf, char *key, __u32 net);
/drivers/media/dvb-frontends/
H A Dlgdt330x.c78 u8 *buf, /* data bytes to send */
84 .buf = buf,
91 printk(KERN_WARNING "lgdt330x: %s error (addr %02x <- %02x, err = %i)\n", __func__, msg.buf[0], msg.buf[1], err);
97 msg.buf += 2;
108 enum I2C_REG reg, u8 *buf, int len)
113 .flags = 0, .buf = wr, .len = 1 },
115 .flags = I2C_M_RD, .buf = buf,
77 i2c_write_demod_bytes(struct lgdt330x_state* state, u8 *buf, int len ) argument
107 i2c_read_demod_bytes(struct lgdt330x_state *state, enum I2C_REG reg, u8 *buf, int len) argument
291 u8 buf[2]; local
453 u8 buf[3]; local
512 u8 buf[3]; local
607 u8 buf[5]; /* read data buffer */ local
651 u8 buf[5]; /* read data buffer */ local
736 u8 buf[1]; local
[all...]
H A Dmt312.c64 u8 *buf, const size_t count)
72 msg[0].buf = regbuf;
76 msg[1].buf = buf;
90 printk(KERN_CONT " %02x", buf[i]);
101 u8 buf[MAX_XFER_SIZE]; local
104 if (1 + count > sizeof(buf)) {
118 buf[0] = reg;
119 memcpy(&buf[1], src, count);
123 msg.buf
63 mt312_read(struct mt312_state *state, const enum mt312_reg_addr reg, u8 *buf, const size_t count) argument
181 u8 buf[2]; local
250 u8 buf[2]; local
478 u8 buf[3]; local
494 u8 buf[3]; local
516 u8 buf[2]; local
531 u8 buf[2]; local
547 u8 buf[5], config_val; local
[all...]
/drivers/gpu/drm/nouveau/
H A Dnouveau_dp.c38 u8 buf[3]; local
43 if (!nv_rdaux(auxch, DP_SINK_OUI, buf, 3))
45 buf[0], buf[1], buf[2]);
47 if (!nv_rdaux(auxch, DP_BRANCH_OUI, buf, 3))
49 buf[0], buf[1], buf[2]);
/drivers/mtd/ubi/
H A Dmisc.c28 * @buf: a buffer with the contents of the physical eraseblock
31 * This function calculates how much "real data" is stored in @buf and returnes
35 int ubi_calc_data_len(const struct ubi_device *ubi, const void *buf, argument
43 if (((const uint8_t *)buf)[i] != 0xFF)
63 void *buf; local
70 buf = vmalloc(vol->usable_leb_size);
71 if (!buf)
82 err = ubi_eba_read_leb(ubi, vol, i, buf, 0, size, 1);
90 vfree(buf);
138 * @buf
145 ubi_check_pattern(const void *buf, uint8_t patt, int size) argument
[all...]
/drivers/scsi/qla4xxx/
H A Dql4_attr.c14 struct bin_attribute *ba, char *buf, loff_t off,
26 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
32 struct bin_attribute *ba, char *buf, loff_t off,
47 buf[1] = 0;
48 ret = kstrtol(buf, 10, &reading);
155 struct device_attribute *attr, char *buf)
160 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n",
164 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d.%02d\n",
171 char *buf)
174 return snprintf(buf, PAGE_SIZ
13 qla4_8xxx_sysfs_read_fw_dump(struct file *filep, struct kobject *kobj, struct bin_attribute *ba, char *buf, loff_t off, size_t count) argument
31 qla4_8xxx_sysfs_write_fw_dump(struct file *filep, struct kobject *kobj, struct bin_attribute *ba, char *buf, loff_t off, size_t count) argument
154 qla4xxx_fw_version_show(struct device *dev, struct device_attribute *attr, char *buf) argument
170 qla4xxx_serial_num_show(struct device *dev, struct device_attribute *attr, char *buf) argument
178 qla4xxx_iscsi_version_show(struct device *dev, struct device_attribute *attr, char *buf) argument
187 qla4xxx_optrom_version_show(struct device *dev, struct device_attribute *attr, char *buf) argument
197 qla4xxx_board_id_show(struct device *dev, struct device_attribute *attr, char *buf) argument
205 qla4xxx_fw_state_show(struct device *dev, struct device_attribute *attr, char *buf) argument
216 qla4xxx_phy_port_cnt_show(struct device *dev, struct device_attribute *attr, char *buf) argument
228 qla4xxx_phy_port_num_show(struct device *dev, struct device_attribute *attr, char *buf) argument
240 qla4xxx_iscsi_func_cnt_show(struct device *dev, struct device_attribute *attr, char *buf) argument
252 qla4xxx_hba_model_show(struct device *dev, struct device_attribute *attr, char *buf) argument
261 qla4xxx_fw_timestamp_show(struct device *dev, struct device_attribute *attr, char *buf) argument
270 qla4xxx_fw_build_user_show(struct device *dev, struct device_attribute *attr, char *buf) argument
278 qla4xxx_fw_ext_timestamp_show(struct device *dev, struct device_attribute *attr, char *buf) argument
286 qla4xxx_fw_load_src_show(struct device *dev, struct device_attribute *attr, char *buf) argument
308 qla4xxx_fw_uptime_show(struct device *dev, struct device_attribute *attr, char *buf) argument
[all...]
/drivers/usb/misc/
H A Disight_firmware.c43 unsigned char *buf = kmalloc(50, GFP_KERNEL); local
47 if (!buf)
58 buf[0] = 0x01;
60 (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, buf, 1,
88 memcpy(buf, ptr, llen);
94 buf, llen, 300) != llen) {
104 buf[0] = 0x00;
106 (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, buf, 1,
113 kfree(buf);
/drivers/media/common/siano/
H A Dsmsdvb-debugfs.c55 char *buf; local
63 buf = debug_data->stats_data;
65 n += snprintf(&buf[n], PAGE_SIZE - n,
67 n += snprintf(&buf[n], PAGE_SIZE - n,
69 n += snprintf(&buf[n], PAGE_SIZE - n,
71 n += snprintf(&buf[n], PAGE_SIZE - n,
73 n += snprintf(&buf[n], PAGE_SIZE - n,
75 n += snprintf(&buf[n], PAGE_SIZE - n,
77 n += snprintf(&buf[n], PAGE_SIZE - n,
79 n += snprintf(&buf[
158 char *buf; local
248 char *buf; local
[all...]
/drivers/usb/host/
H A Duhci-debug.c26 static void lprintk(char *buf) argument
31 while (buf) {
32 p = strchr(buf, '\n');
35 printk(KERN_DEBUG "%s\n", buf);
36 buf = p;
37 if (buf)
38 buf++;
42 static int uhci_show_td(struct uhci_hcd *uhci, struct uhci_td *td, char *buf, argument
45 char *out = buf;
65 if (out - buf > le
99 uhci_show_urbp(struct uhci_hcd *uhci, struct urb_priv *urbp, char *buf, int len, int space) argument
164 uhci_show_qh(struct uhci_hcd *uhci, struct uhci_qh *qh, char *buf, int len, int space) argument
261 uhci_show_sc(int port, unsigned short status, char *buf) argument
278 uhci_show_root_hub_state(struct uhci_hcd *uhci, char *buf) argument
304 uhci_show_status(struct uhci_hcd *uhci, char *buf, int len) argument
373 uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len) argument
610 uhci_debug_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) argument
640 lprintk(char *buf) argument
643 uhci_show_qh(struct uhci_hcd *uhci, struct uhci_qh *qh, char *buf, int len, int space) argument
649 uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len) argument
[all...]
/drivers/acpi/
H A Dbgrt.c20 struct device_attribute *attr, char *buf)
22 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->version);
27 struct device_attribute *attr, char *buf)
29 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->status);
34 struct device_attribute *attr, char *buf)
36 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->image_type);
41 struct device_attribute *attr, char *buf)
43 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->image_offset_x);
48 struct device_attribute *attr, char *buf)
50 return snprintf(buf, PAGE_SIZ
19 show_version(struct device *dev, struct device_attribute *attr, char *buf) argument
26 show_status(struct device *dev, struct device_attribute *attr, char *buf) argument
33 show_type(struct device *dev, struct device_attribute *attr, char *buf) argument
40 show_xoffset(struct device *dev, struct device_attribute *attr, char *buf) argument
47 show_yoffset(struct device *dev, struct device_attribute *attr, char *buf) argument
54 image_read(struct file *file, struct kobject *kobj, struct bin_attribute *attr, char *buf, loff_t off, size_t count) argument
[all...]
/drivers/gpu/drm/i915/
H A Dintel_dsi_cmd.h48 u8 *buf, int buflen);
51 u8 *reqdata, int reqlen, u8 *buf, int buflen);
66 u8 buf[2] = { dcs_cmd, param }; local
67 return dsi_vc_dcs_write(intel_dsi, channel, buf, 2);
85 u8 buf[2] = { param1, param2 }; local
86 return dsi_vc_generic_write(intel_dsi, channel, buf, 2);
91 int channel, u8 *buf, int buflen)
93 return dsi_vc_generic_read(intel_dsi, channel, NULL, 0, buf, buflen);
97 int channel, u8 param, u8 *buf,
100 return dsi_vc_generic_read(intel_dsi, channel, &param, 1, buf, bufle
90 dsi_vc_generic_read_0(struct intel_dsi *intel_dsi, int channel, u8 *buf, int buflen) argument
96 dsi_vc_generic_read_1(struct intel_dsi *intel_dsi, int channel, u8 param, u8 *buf, int buflen) argument
103 dsi_vc_generic_read_2(struct intel_dsi *intel_dsi, int channel, u8 param1, u8 param2, u8 *buf, int buflen) argument
[all...]
/drivers/usb/musb/
H A Dblackfin.h56 static void dump_fifo_data(u8 *buf, u16 len) argument
58 u8 *tmp = buf;
69 #define dump_fifo_data(buf, len) do {} while (0)
/drivers/input/mouse/
H A Dsermouse.c48 signed char buf[8]; member in struct:sermouse
64 signed char *buf = sermouse->buf; local
79 input_report_rel(dev, REL_Y, -buf[1]);
80 buf[0] = data - data / 2;
85 input_report_rel(dev, REL_X, buf[0]);
86 input_report_rel(dev, REL_Y, buf[1] - data);
87 buf[1] = data / 2;
106 signed char *buf = sermouse->buf; local
[all...]
/drivers/media/pci/cx18/
H A Dcx18-vbi.c109 static u32 compress_raw_buf(struct cx18 *cx, u8 *buf, u32 size, u32 hdr_size) argument
113 u8 *q = buf;
118 buf += hdr_size;
121 p = buf + i * line_size;
142 static u32 compress_sliced_buf(struct cx18 *cx, u8 *buf, u32 size, argument
152 for (i = hdr_size, buf += hdr_size; i < size; i++, buf++) {
153 if (buf[0] == 0xff && !buf[1] && !buf[
189 _cx18_process_vbi_data(struct cx18 *cx, struct cx18_buffer *buf) argument
254 struct cx18_buffer *buf; local
[all...]
/drivers/mmc/core/
H A Dsdio_cis.c28 const unsigned char *buf, unsigned size)
35 buf += 2;
40 if (buf[i] == 0xff)
42 if (buf[i] == 0)
58 strcpy(string, buf);
60 buf += strlen(buf) + 1;
75 const unsigned char *buf, unsigned size)
80 vendor = buf[0] | (buf[
27 cistpl_vers_1(struct mmc_card *card, struct sdio_func *func, const unsigned char *buf, unsigned size) argument
74 cistpl_manfid(struct mmc_card *card, struct sdio_func *func, const unsigned char *buf, unsigned size) argument
111 cis_tpl_parse(struct mmc_card *card, struct sdio_func *func, const char *tpl_descr, const struct cis_tpl *tpl, int tpl_count, unsigned char code, const unsigned char *buf, unsigned size) argument
146 cistpl_funce_common(struct mmc_card *card, struct sdio_func *func, const unsigned char *buf, unsigned size) argument
163 cistpl_funce_func(struct mmc_card *card, struct sdio_func *func, const unsigned char *buf, unsigned size) argument
208 cistpl_funce(struct mmc_card *card, struct sdio_func *func, const unsigned char *buf, unsigned size) argument
[all...]
/drivers/net/wireless/ath/ath6kl/
H A Ddebug.c136 const void *buf, size_t len)
142 print_hex_dump_bytes(prefix, DUMP_PREFIX_OFFSET, buf, len);
147 buf, len);
289 char *buf; local
293 buf = kzalloc(buf_len, GFP_KERNEL);
294 if (!buf)
297 len += scnprintf(buf + len, buf_len - len, "\n");
298 len += scnprintf(buf + len, buf_len - len, "%25s\n",
300 len += scnprintf(buf + len, buf_len - len, "%25s\n\n",
302 len += scnprintf(buf
134 ath6kl_dbg_dump(enum ATH6K_DEBUG_MASK mask, const char *msg, const char *prefix, const void *buf, size_t len) argument
321 ath6kl_debug_fwlog_event(struct ath6kl *ar, const void *buf, size_t len) argument
390 char *buf; local
443 char *buf; local
514 char buf[16]; local
556 char *buf; local
713 char *buf; local
765 print_endpoint_stat(struct htc_target *target, char *buf, unsigned int buf_len, unsigned int len, int offset, const char *name) argument
790 char *buf; local
899 u8 buf[50]; local
944 u8 *buf; local
1009 u8 *buf = file->private_data; local
1049 char buf[32]; local
1070 u8 buf[32]; local
1084 char buf[32]; local
1127 ath6kl_debug_roam_tbl_event(struct ath6kl *ar, const void *buf, size_t len) argument
1169 char *buf; local
1238 char buf[20]; local
1270 char buf[20]; local
1313 char buf[16]; local
1358 char buf[16]; local
1399 char buf[200]; local
1577 char buf[100]; local
1625 char buf[32]; local
1665 char buf[32]; local
1696 char buf[32]; local
1721 u8 buf[100]; local
[all...]
/drivers/s390/net/
H A Dqeth_l3_sys.c17 struct qeth_routing_info *route, char *buf)
21 return sprintf(buf, "%s\n", "primary router");
23 return sprintf(buf, "%s\n", "secondary router");
26 return sprintf(buf, "%s\n", "multicast router+");
28 return sprintf(buf, "%s\n", "multicast router");
31 return sprintf(buf, "%s\n", "primary connector+");
33 return sprintf(buf, "%s\n", "primary connector");
36 return sprintf(buf, "%s\n", "secondary connector+");
38 return sprintf(buf, "%s\n", "secondary connector");
40 return sprintf(buf, "
16 qeth_l3_dev_route_show(struct qeth_card *card, struct qeth_routing_info *route, char *buf) argument
44 qeth_l3_dev_route4_show(struct device *dev, struct device_attribute *attr, char *buf) argument
55 qeth_l3_dev_route_store(struct qeth_card *card, struct qeth_routing_info *route, enum qeth_prot_versions prot, const char *buf, size_t count) argument
96 qeth_l3_dev_route4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
111 qeth_l3_dev_route6_show(struct device *dev, struct device_attribute *attr, char *buf) argument
122 qeth_l3_dev_route6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
137 qeth_l3_dev_fake_broadcast_show(struct device *dev, struct device_attribute *attr, char *buf) argument
148 qeth_l3_dev_fake_broadcast_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
178 qeth_l3_dev_sniffer_show(struct device *dev, struct device_attribute *attr, char *buf) argument
189 qeth_l3_dev_sniffer_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
243 qeth_l3_dev_hsuid_show(struct device *dev, struct device_attribute *attr, char *buf) argument
263 qeth_l3_dev_hsuid_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
358 qeth_l3_dev_ipato_enable_show(struct device *dev, struct device_attribute *attr, char *buf) argument
369 qeth_l3_dev_ipato_enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
418 qeth_l3_dev_ipato_invert4_show(struct device *dev, struct device_attribute *attr, char *buf) argument
429 qeth_l3_dev_ipato_invert4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
458 qeth_l3_dev_ipato_add_show(char *buf, struct qeth_card *card, enum qeth_prot_versions proto) argument
489 qeth_l3_dev_ipato_add4_show(struct device *dev, struct device_attribute *attr, char *buf) argument
500 qeth_l3_parse_ipatoe(const char *buf, enum qeth_prot_versions proto, u8 *addr, int *mask_bits) argument
527 qeth_l3_dev_ipato_add_store(const char *buf, size_t count, struct qeth_card *card, enum qeth_prot_versions proto) argument
557 qeth_l3_dev_ipato_add4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
572 qeth_l3_dev_ipato_del_store(const char *buf, size_t count, struct qeth_card *card, enum qeth_prot_versions proto) argument
587 qeth_l3_dev_ipato_del4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
601 qeth_l3_dev_ipato_invert6_show(struct device *dev, struct device_attribute *attr, char *buf) argument
612 qeth_l3_dev_ipato_invert6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
641 qeth_l3_dev_ipato_add6_show(struct device *dev, struct device_attribute *attr, char *buf) argument
652 qeth_l3_dev_ipato_add6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
667 qeth_l3_dev_ipato_del6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
697 qeth_l3_dev_vipa_add_show(char *buf, struct qeth_card *card, enum qeth_prot_versions proto) argument
729 qeth_l3_dev_vipa_add4_show(struct device *dev, struct device_attribute *attr, char *buf) argument
740 qeth_l3_parse_vipae(const char *buf, enum qeth_prot_versions proto, u8 *addr) argument
749 qeth_l3_dev_vipa_add_store(const char *buf, size_t count, struct qeth_card *card, enum qeth_prot_versions proto) argument
763 qeth_l3_dev_vipa_add4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
778 qeth_l3_dev_vipa_del_store(const char *buf, size_t count, struct qeth_card *card, enum qeth_prot_versions proto) argument
792 qeth_l3_dev_vipa_del4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
806 qeth_l3_dev_vipa_add6_show(struct device *dev, struct device_attribute *attr, char *buf) argument
817 qeth_l3_dev_vipa_add6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
832 qeth_l3_dev_vipa_del6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
859 qeth_l3_dev_rxip_add_show(char *buf, struct qeth_card *card, enum qeth_prot_versions proto) argument
891 qeth_l3_dev_rxip_add4_show(struct device *dev, struct device_attribute *attr, char *buf) argument
902 qeth_l3_parse_rxipe(const char *buf, enum qeth_prot_versions proto, u8 *addr) argument
911 qeth_l3_dev_rxip_add_store(const char *buf, size_t count, struct qeth_card *card, enum qeth_prot_versions proto) argument
925 qeth_l3_dev_rxip_add4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
940 qeth_l3_dev_rxip_del_store(const char *buf, size_t count, struct qeth_card *card, enum qeth_prot_versions proto) argument
954 qeth_l3_dev_rxip_del4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
968 qeth_l3_dev_rxip_add6_show(struct device *dev, struct device_attribute *attr, char *buf) argument
979 qeth_l3_dev_rxip_add6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
994 qeth_l3_dev_rxip_del6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
[all...]

Completed in 563 milliseconds

1234567891011>>