Symbol: ioread16_rep
arch/alpha/include/asm/io.h
286
extern void ioread16_rep(const void __iomem *port, void *buf, unsigned long count);
arch/alpha/include/asm/io.h
642
#define ioread16_rep ioread16_rep
arch/alpha/kernel/io.c
347
ioread16_rep(ioport_map(port, 2), dst, count);
arch/alpha/kernel/io.c
350
EXPORT_SYMBOL(ioread16_rep);
arch/parisc/include/asm/io.h
266
extern void ioread16_rep(const void __iomem *port, void *buf, unsigned long count);
arch/parisc/include/asm/io.h
269
#define ioread16_rep ioread16_rep
arch/parisc/lib/iomap.c
545
EXPORT_SYMBOL(ioread16_rep);
drivers/ata/libata-sff.c
484
ioread16_rep(data_addr, buf, words);
drivers/ata/libata-sff.c
500
ioread16_rep(data_addr, pad, 1);
drivers/ata/libata-sff.c
561
ioread16_rep(data_addr, pad, 1);
drivers/ata/pata_it821x.c
687
ioread16_rep(ap->ioaddr.data_addr, buf, len/2);
drivers/bcma/host_pci.c
94
ioread16_rep(addr, buffer, count >> 1);
drivers/mmc/host/tmio_mmc.h
223
ioread16_rep(host->ctl + (addr << host->bus_shift), buf, count);
drivers/mtd/nand/raw/atmel/nand-controller.c
490
ioread16_rep(nand->activecs->io.virt, buf, len / 2);
drivers/mtd/nand/raw/davinci_nand.c
726
ioread16_rep(info->current_cs, buf, len >> 1);
drivers/mtd/nand/raw/gpio.c
105
ioread16_rep(gpiomtd->io, instr->ctx.data.buf.in,
drivers/mtd/nand/raw/ingenic/ingenic_nand_drv.c
282
ioread16_rep(cs->base + nfc->soc_info->data_offset,
drivers/mtd/nand/raw/nand_legacy.c
163
ioread16_rep(chip->legacy.IO_ADDR_R, p, len >> 1);
drivers/mtd/nand/raw/omap2.c
2116
ioread16_rep(info->fifo, buf, len >> 1);
drivers/net/ethernet/8390/ax88796.c
210
ioread16_rep(nic_base + NE_DATAPORT, hdr,
drivers/net/ethernet/8390/ax88796.c
256
ioread16_rep(nic_base + NE_DATAPORT, buf, count >> 1);
drivers/net/ethernet/davicom/dm9000.c
223
ioread16_rep(reg, data, (count+1) >> 1);
drivers/net/ethernet/intel/e1000/e1000_osdep.h
26
(ioread16_rep(base + (offset << 1), data, count))
drivers/net/ethernet/micrel/ks8851_par.c
177
ioread16_rep(ksp->hw_addr, (u16 *)buff + 1, len / 2);
drivers/net/ethernet/smsc/smc91x.h
185
#define SMC_insw(a, r, p, l) ioread16_rep((a) + (r), p, l)
drivers/spi/spi-s3c64xx.c
679
ioread16_rep(regs + S3C64XX_SPI_RX_DATA,
drivers/spi/spi-synquacer.c
161
ioread16_rep(sspi->regs + SYNQUACER_HSSPI_REG_RX_FIFO,
drivers/ssb/pci.c
1019
ioread16_rep(addr, buffer, count >> 1);
drivers/usb/gadget/udc/m66592-udc.h
537
ioread16_rep(fifoaddr, buf, len);
drivers/usb/gadget/udc/r8a66597-udc.h
158
ioread16_rep(fifoaddr, buf, len / 2);
drivers/usb/host/r8a66597.h
183
ioread16_rep(fifoaddr, buf, len);
drivers/usb/musb/musb_core.c
386
ioread16_rep(fifo, dst, len >> 1);
include/asm-generic/io.h
1015
#ifndef ioread16_rep
include/asm-generic/io.h
1016
#define ioread16_rep ioread16_rep
include/asm-generic/iomap.h
63
extern void ioread16_rep(const void __iomem *port, void *buf, unsigned long count);
lib/iomap.c
379
EXPORT_SYMBOL(ioread16_rep);