Searched refs:from (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/drivers/pnp/isapnp/
H A Dcompat.c24 struct pnp_card *from)
33 list = from ? from->global_list.next : pnp_cards.next;
46 unsigned short function, struct pnp_dev *from)
53 if (card == NULL) { /* look for a logical device from all cards */
57 if (from)
58 list = from->global_list.next;
72 if (from) {
73 list = from->card_list.next;
74 if (from
23 pnp_find_card(unsigned short vendor, unsigned short device, struct pnp_card *from) argument
45 pnp_find_dev(struct pnp_card *card, unsigned short vendor, unsigned short function, struct pnp_dev *from) argument
[all...]
/drivers/infiniband/hw/qib/
H A Dqib_pio_copy.c6 * General Public License (GPL) Version 2, available from the file
38 * @from: source (must be 64-bit aligned)
41 * Copy data from kernel space to MMIO space, in multiples of 32 bits at a
45 void qib_pio_copy(void __iomem *to, const void *from, size_t count) argument
49 const u64 *src = from;
58 const u32 *src = from;
/drivers/net/fddi/skfp/
H A Dpmf.c559 char *from ; local
892 from = mib_addr + pt->p_offset ;
915 to[2] = *from++ ;
916 to[3] = *from++ ;
919 to[3] = *from++ ;
920 to[2] = *from++ ;
923 to[2] = *from++ ;
924 to[3] = *from++ ;
933 to[1] = *from++ ;
934 to[0] = *from
1082 char *from ; local
[all...]
/drivers/mtd/maps/
H A Dmap_funcs.c22 static void __xipram simple_map_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
24 inline_map_copy_from(map, to, from, len);
27 static void __xipram simple_map_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
29 inline_map_copy_to(map, to, from, len);
H A Dsbc_gxx.c124 static void sbc_gxx_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
128 if (len > (WINDOW_LENGTH - (from & WINDOW_MASK)))
129 thislen = WINDOW_LENGTH-(from & WINDOW_MASK);
132 sbc_gxx_page(map, from);
133 memcpy_fromio(to, iomapadr + (from & WINDOW_MASK), thislen);
136 from += thislen;
149 static void sbc_gxx_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
158 memcpy_toio(iomapadr + (to & WINDOW_MASK), from, thislen);
161 from += thislen;
H A Dvmax301.c36 the extra indirection from having one of the map->map_priv
65 static void vmax301_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
69 if (len > (WINDOW_LENGTH - (from & WINDOW_MASK)))
70 thislen = WINDOW_LENGTH-(from & WINDOW_MASK);
72 vmax301_page(map, from);
73 memcpy_fromio(to, map->map_priv_2 + from, thislen);
76 from += thislen;
89 static void vmax301_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
98 memcpy_toio(map->map_priv_2 + to, from, thislen);
101 from
[all...]
H A Ddc21285.c75 static void dc21285_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
77 memcpy(to, (void*)(map->virt + from), len);
105 static void dc21285_copy_to_32(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
109 d.x[0] = *((uint32_t*)from);
111 from += 4;
117 static void dc21285_copy_to_16(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
121 d.x[0] = *((uint16_t*)from);
123 from += 2;
129 static void dc21285_copy_to_8(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
132 d.x[0] = *((uint8_t*)from);
[all...]
H A Duclinux.c45 static int uclinux_point(struct mtd_info *mtd, loff_t from, size_t len, argument
49 *virt = map->virt + from;
51 *phys = map->phys + from;
H A Doctagon-5066.c73 static void oct5066_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
77 if (len > (WINDOW_LENGTH - (from & WINDOW_MASK)))
78 thislen = WINDOW_LENGTH-(from & WINDOW_MASK);
81 oct5066_page(map, from);
82 memcpy_fromio(to, iomapadr + from, thislen);
85 from += thislen;
98 static void oct5066_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
107 memcpy_toio(iomapadr + to, from, thislen);
110 from += thislen;
/drivers/char/tpm/
H A DKconfig12 say Yes and it will be accessible from within Linux. For
33 from within Linux. To compile this driver as a module, choose
40 If you have a TPM security chip from National Semiconductor
41 say Yes and it will be accessible from within Linux. To
49 If you have a TPM security chip from Atmel say Yes and it
50 will be accessible from within Linux. To compile this driver
57 If you have a TPM security chip from Infineon Technologies
59 will be accessible from within Linux.
/drivers/pci/
H A Dsearch.c70 * pci_find_bus - locate PCI bus from a given domain and bus number
95 * @from: Previous PCI bus found, or %NULL for new search.
98 * initiated by passing %NULL as the @from argument. Otherwise if
99 * @from is not %NULL, searches continue from next device on the
103 pci_find_next_bus(const struct pci_bus *from) argument
110 n = from ? from->node.next : pci_root_buses.next;
194 * @from: Previous PCI device found in search, or %NULL for new search.
199 * A new search is initiated by passing %NULL as the @from argumen
207 pci_get_dev_by_id(const struct pci_device_id *id, struct pci_dev *from) argument
242 pci_get_subsys(unsigned int vendor, unsigned int device, unsigned int ss_vendor, unsigned int ss_device, struct pci_dev *from) argument
287 pci_get_device(unsigned int vendor, unsigned int device, struct pci_dev *from) argument
306 pci_get_class(unsigned int class, struct pci_dev *from) argument
[all...]
/drivers/s390/cio/
H A Dblacklist.c47 * (Un-)blacklist the devices from-to
50 unsigned int to_ssid, unsigned int from,
53 if ((from_ssid > to_ssid) || ((from_ssid == to_ssid) && (from > to))) {
56 "range for cio_ignore\n", from_ssid, from,
63 (from <= to))) {
65 set_bit(from, bl_dev[from_ssid]);
67 clear_bit(from, bl_dev[from_ssid]);
68 from++;
69 if (from > __MAX_SUBCHANNEL) {
71 from
49 blacklist_range(range_action action, unsigned int from_ssid, unsigned int to_ssid, unsigned int from, unsigned int to, int msgtrigger) argument
153 unsigned int from_cssid, to_cssid, from_ssid, to_ssid, from, to; local
[all...]
H A Didset.h25 void idset_add_set(struct idset *to, struct idset *from);
/drivers/net/caif/
H A DKconfig13 identified as N_CAIF. When this ldisc is opened from user space
/drivers/video/
H A Dfbcmap.c158 * @from: frame buffer colormap structure
161 * Copy contents of colormap from @from to @to.
164 int fb_copy_cmap(const struct fb_cmap *from, struct fb_cmap *to) argument
169 if (to->start > from->start)
170 fromoff = to->start - from->start;
172 tooff = from->start - to->start;
174 if (size > (int) (from->len - fromoff))
175 size = from->len - fromoff;
180 memcpy(to->red+tooff, from
188 fb_cmap_to_user(const struct fb_cmap *from, struct fb_cmap_user *to) argument
[all...]
/drivers/media/video/ivtv/
H A Divtv-queue.c88 static void ivtv_queue_move_buf(struct ivtv_stream *s, struct ivtv_queue *from, argument
91 struct ivtv_buffer *buf = list_entry(from->list.next, struct ivtv_buffer, list);
93 list_move_tail(from->list.next, &to->list);
94 from->buffers--;
95 from->length -= s->buf_size;
96 from->bytesused -= buf->bytesused - buf->readpos;
105 /* Move 'needed_bytes' worth of buffers from queue 'from' into queue 'to'.
106 If 'needed_bytes' == 0, then move all buffers from 'from' int
122 ivtv_queue_move(struct ivtv_stream *s, struct ivtv_queue *from, struct ivtv_queue *steal, struct ivtv_queue *to, int needed_bytes) argument
[all...]
/drivers/net/ethernet/faraday/
H A DKconfig11 and read the Ethernet-HOWTO, available from
28 from Faraday. It is used on Faraday A320, Andes AG101 and some
37 from Faraday. It is used on Faraday A369, Andes AG102 and some
/drivers/usb/serial/
H A Dezusb_convert.pl36 * Generated from ${basename}.s by ezusb_convert.pl
38 * from which it was derived.
/drivers/mtd/onenand/
H A Donenand_bbt.c9 * Derived from nand_bbt.c
63 loff_t from; local
72 /* We need only read few bytes from the OOB area */
82 from = 0;
96 from + j * this->writesize + bd->offs, &ops);
114 rgn = flexonenand_region(mtd, from);
115 from += mtd->eraseregions[rgn].erasesize;
117 from += (1 << bbm->bbt_erase_shift);
/drivers/net/plip/
H A DKconfig11 local machines. A PLIP link from a Linux box is a popular means to
30 as the NET-3-HOWTO, both available from
/drivers/mtd/devices/
H A Ddoc2001plus.c35 static int doc_read(struct mtd_info *mtd, loff_t from, size_t len,
81 /* read form NOP register should be issued prior to the read from CDSNControl
179 static unsigned int DoC_GetDataOffset(struct mtd_info *mtd, loff_t *from) argument
184 unsigned int ofs = *from & 0x3ff;
198 *from = (*from & ~0x3ff) | ofs;
202 if ((*from) & 0x100)
208 static unsigned int DoC_GetECCOffset(struct mtd_info *mtd, loff_t *from) argument
212 if (*from & 0x200) {
214 ofs = 10 + (*from
224 DoC_GetFlagsOffset(struct mtd_info *mtd, loff_t *from) argument
234 DoC_GetHdrOffset(struct mtd_info *mtd, loff_t *from) argument
574 doc_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) argument
[all...]
/drivers/net/ethernet/3com/
H A DKconfig11 and read the Ethernet-HOWTO, available from
26 the Ethernet-HOWTO, available from
41 from <http://www.tldp.org/docs.html#howto>.
55 network card, say Y and read the Ethernet-HOWTO, available from
97 available from <http://www.tldp.org/docs.html#howto>. More
116 the Ethernet-HOWTO, available from
/drivers/net/ethernet/8390/
H A DKconfig14 and read the Ethernet-HOWTO, available from
30 the Ethernet-HOWTO, available from
42 the Ethernet-HOWTO, available from
82 the Ethernet-HOWTO, available from
94 the Ethernet-HOWTO, available from
106 the Ethernet-HOWTO, available from
118 the Ethernet-HOWTO, available from
148 the Ethernet-HOWTO, available from
161 and read the Ethernet-HOWTO, available from
170 the Ethernet-HOWTO, available from
[all...]
/drivers/net/ethernet/adaptec/
H A DKconfig11 and read the Ethernet-HOWTO, available from
29 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
/drivers/net/ethernet/adi/
H A DKconfig11 available from <http://www.tldp.org/docs.html#howto>.
33 module ( = code which can be inserted in and removed from the running

Completed in 1253 milliseconds

1234567891011>>