Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 25 of 25) sorted by relevance

/drivers/mfd/
Dmfd-core.c19 const struct mfd_cell *cell, in mfd_add_device() argument
28 pdev = platform_device_alloc(cell->name, id); in mfd_add_device()
32 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL); in mfd_add_device()
37 platform_set_drvdata(pdev, cell->driver_data); in mfd_add_device()
40 cell->platform_data, cell->data_size); in mfd_add_device()
44 for (r = 0; r < cell->num_resources; r++) { in mfd_add_device()
45 res[r].name = cell->resources[r].name; in mfd_add_device()
46 res[r].flags = cell->resources[r].flags; in mfd_add_device()
49 if (cell->resources[r].flags & IORESOURCE_MEM) { in mfd_add_device()
52 cell->resources[r].start; in mfd_add_device()
[all …]
Dwm8400-core.c245 struct mfd_cell cell = { in wm8400_register_codec() local
250 return mfd_add_devices(wm8400->dev, -1, &cell, 1, NULL, 0); in wm8400_register_codec()
DKconfig80 are often used in portable devices like cell phones and cameras.
93 cell phones and PDAs.
/drivers/staging/otus/80211core/
Dqueue.c63 q->cell[q->tail].buf = buf; in zfQueuePutNcs()
64 q->cell[q->tail].tick = tick; in zfQueuePutNcs()
95 buf = q->cell[q->head].buf; in zfQueueGet()
139 buf = q->cell[index].buf; in zfQueueGetWithMac()
148 q->cell[index].buf = q->cell[next].buf; in zfQueueGetWithMac()
149 q->cell[index].tick = q->cell[next].tick; in zfQueueGetWithMac()
152 q->cell[next].buf, addr) == 0)) in zfQueueGetWithMac()
203 buftick = q->cell[q->head].tick; in zfQueueAge()
206 buf = q->cell[q->head].buf; in zfQueueAge()
235 q->cell[index].buf = q->cell[next].buf; in zfQueueRemovewithIndex()
[all …]
Dqueue.h34 struct zsQueueCell cell[1]; member
/drivers/usb/host/
Dohci-tmio.c188 struct mfd_cell *cell = dev->dev.platform_data; in ohci_hcd_tmio_drv_probe() local
201 if (!cell) in ohci_hcd_tmio_drv_probe()
237 if (cell->enable) { in ohci_hcd_tmio_drv_probe()
238 ret = cell->enable(dev); in ohci_hcd_tmio_drv_probe()
258 if (cell->disable) in ohci_hcd_tmio_drv_probe()
259 cell->disable(dev); in ohci_hcd_tmio_drv_probe()
277 struct mfd_cell *cell = dev->dev.platform_data; in ohci_hcd_tmio_drv_remove() local
281 if (cell->disable) in ohci_hcd_tmio_drv_remove()
282 cell->disable(dev); in ohci_hcd_tmio_drv_remove()
296 struct mfd_cell *cell = dev->dev.platform_data; in ohci_hcd_tmio_drv_suspend() local
[all …]
/drivers/video/
Dtmiofb.c253 struct mfd_cell *cell = dev->dev.platform_data; in tmiofb_hw_stop() local
254 struct tmio_fb_data *data = cell->driver_data; in tmiofb_hw_stop()
271 struct mfd_cell *cell = dev->dev.platform_data; in tmiofb_hw_init() local
274 const struct resource *nlcr = &cell->resources[0]; in tmiofb_hw_init()
275 const struct resource *vram = &cell->resources[2]; in tmiofb_hw_init()
315 struct mfd_cell *cell = dev->dev.platform_data; in tmiofb_hw_mode() local
316 struct tmio_fb_data *data = cell->driver_data; in tmiofb_hw_mode()
562 struct mfd_cell *cell = in tmiofb_find_mode() local
564 struct tmio_fb_data *data = cell->driver_data; in tmiofb_find_mode()
584 struct mfd_cell *cell = in tmiofb_check_var() local
[all …]
/drivers/mtd/nand/
Dtmio_nand.c306 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_hw_init() local
309 if (cell->enable) { in tmio_hw_init()
310 ret = cell->enable(dev); in tmio_hw_init()
350 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_hw_stop() local
353 if (cell->disable) in tmio_hw_stop()
354 cell->disable(dev); in tmio_hw_stop()
359 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_probe() local
360 struct tmio_nand_data *data = cell->driver_data; in tmio_probe()
503 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_suspend() local
505 if (cell->suspend) in tmio_suspend()
[all …]
/drivers/s390/char/
Dtty3270.c971 struct tty3270_cell *cell; in tty3270_put_character() local
976 cell = line->cells + line->len; in tty3270_put_character()
977 cell->character = tp->view.ascebc[' ']; in tty3270_put_character()
978 cell->highlight = tp->highlight; in tty3270_put_character()
979 cell->f_color = tp->f_color; in tty3270_put_character()
984 cell = line->cells + tp->cx; in tty3270_put_character()
985 cell->character = tp->view.ascebc[(unsigned int) ch]; in tty3270_put_character()
986 cell->highlight = tp->highlight; in tty3270_put_character()
987 cell->f_color = tp->f_color; in tty3270_put_character()
997 struct tty3270_cell *cell; in tty3270_convert_line() local
[all …]
/drivers/mmc/host/
Dtmio_mmc.c503 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_mmc_suspend() local
510 if (!ret && cell->disable) in tmio_mmc_suspend()
511 cell->disable(dev); in tmio_mmc_suspend()
518 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_mmc_resume() local
529 if (cell->enable) { in tmio_mmc_resume()
530 ret = cell->enable(dev); in tmio_mmc_resume()
547 struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; in tmio_mmc_probe() local
591 if (cell->enable) { in tmio_mmc_probe()
592 ret = cell->enable(dev); in tmio_mmc_probe()
DKconfig221 This provides support for the SD/MMC cell found in TC6393XB,
/drivers/md/
Ddm-ioctl.c178 struct hash_cell *cell, *hc; in dm_hash_insert() local
183 cell = alloc_cell(name, uuid, md); in dm_hash_insert()
184 if (!cell) in dm_hash_insert()
197 list_add(&cell->name_list, _name_buckets + hash_str(name)); in dm_hash_insert()
202 list_del(&cell->name_list); in dm_hash_insert()
206 list_add(&cell->uuid_list, _uuid_buckets + hash_str(uuid)); in dm_hash_insert()
209 dm_set_mdptr(md, cell); in dm_hash_insert()
216 free_cell(cell); in dm_hash_insert()
/drivers/parisc/
Diosapic.c378 unsigned long cell = 0; in iosapic_init() local
389 cell = cell_info.cell_num; in iosapic_init()
395 irt_num_entry = iosapic_load_irt(cell, &irt_cell); in iosapic_init()
/drivers/usb/class/
DKconfig37 of cell phones compliant to the CDC WMC specification. You can use
/drivers/usb/
DREADME17 cell phones); and hard-wired peripherals like Ethernet adapters.
/drivers/block/
Dviodasd.c79 #define DEVICE_NO(cell) ((struct viodasd_device *)(cell) - &viodasd_devices[0]) argument
/drivers/ata/
Dpata_sil680.c233 if (machine_is(cell)) in sil680_init_chip()
/drivers/atm/
Didt77252.c123 static int idt77252_send_oam(struct atm_vcc *vcc, void *cell,
1068 unsigned char *cell; in dequeue_rx() local
1071 cell = skb->data; in dequeue_rx()
1094 cell, ATM_CELL_PAYLOAD); in dequeue_rx()
1101 cell += ATM_CELL_PAYLOAD; in dequeue_rx()
2004 idt77252_send_oam(struct atm_vcc *vcc, void *cell, int flags) in idt77252_send_oam() argument
2018 memcpy(skb_put(skb, 52), cell, 52); in idt77252_send_oam()
Dnicstar.c2104 unsigned char *cell; in dequeue_rx() local
2107 cell = skb->data; in dequeue_rx()
2131 memcpy(skb_tail_pointer(sb), cell, ATM_CELL_PAYLOAD); in dequeue_rx()
2137 cell += ATM_CELL_PAYLOAD; in dequeue_rx()
DKconfig238 an open connection in the raw cell queue of the driver. Useful
/drivers/net/usb/
DKconfig329 PDAs from Olympus and some cell phones from Motorola.
/drivers/rtc/
DKconfig634 supply (such as a small coin cell battery), but do not need to
/drivers/serial/
DKconfig1337 This driver supports the cell network processor nwp serial
/drivers/staging/rt2870/
Dtmp605526 case SIOCSIWNWID: // set network id (the cell)
Dtmp615526 case SIOCSIWNWID: // set network id (the cell)