Symbol: ioread8_rep
arch/alpha/include/asm/io.h
285
extern void ioread8_rep(const void __iomem *port, void *buf, unsigned long count);
arch/alpha/include/asm/io.h
641
#define ioread8_rep ioread8_rep
arch/alpha/kernel/io.c
307
ioread8_rep(ioport_map(port, 1), dst, count);
arch/alpha/kernel/io.c
310
EXPORT_SYMBOL(ioread8_rep);
arch/parisc/include/asm/io.h
265
extern void ioread8_rep(const void __iomem *port, void *buf, unsigned long count);
arch/parisc/include/asm/io.h
268
#define ioread8_rep ioread8_rep
arch/parisc/lib/iomap.c
544
EXPORT_SYMBOL(ioread8_rep);
drivers/ata/pata_octeon_cf.c
316
ioread8_rep(data_addr, buffer, words);
drivers/ata/pata_pcmcia.c
97
ioread8_rep(ap->ioaddr.data_addr, buf, buflen);
drivers/bcma/host_pci.c
90
ioread8_rep(addr, buffer, count);
drivers/firmware/qemu_fw_cfg.c
152
ioread8_rep(fw_cfg_reg_data, buf, count);
drivers/gpu/drm/sun4i/sun4i_hdmi_i2c.c
59
ioread8_rep(hdmi->base + hdmi->variant->ddc_fifo_reg, buf, len);
drivers/i2c/busses/i2c-i801.c
556
ioread8_rep(SMBBLKDAT(priv), data->block + 1, len);
drivers/misc/vmw_vmci/vmci_guest.c
121
ioread8_rep(vmci_dev->iobase + VMCI_DATA_IN_ADDR,
drivers/mmc/host/davinci_mmc.c
248
ioread8_rep(host->base + DAVINCI_MMCDRR, p, (n & 3));
drivers/mtd/nand/raw/atmel/nand-controller.c
492
ioread8_rep(nand->activecs->io.virt, buf, len);
drivers/mtd/nand/raw/davinci_nand.c
724
ioread8_rep(info->current_cs, buf, len);
drivers/mtd/nand/raw/gpio.c
108
ioread8_rep(gpiomtd->io, instr->ctx.data.buf.in,
drivers/mtd/nand/raw/ingenic/ingenic_nand_drv.c
278
ioread8_rep(cs->base + nfc->soc_info->data_offset,
drivers/mtd/nand/raw/nand_legacy.c
132
ioread8_rep(chip->legacy.IO_ADDR_R, buf, len);
drivers/mtd/nand/raw/omap2.c
2114
ioread8_rep(info->fifo, buf, len);
drivers/mtd/nand/raw/technologic-nand-controller.c
90
ioread8_rep(data->base, instr->ctx.data.buf.in, instr->ctx.data.len);
drivers/net/ethernet/8390/ax88796.c
213
ioread8_rep(nic_base + NE_DATAPORT, hdr,
drivers/net/ethernet/8390/ax88796.c
261
ioread8_rep(nic_base + NE_DATAPORT, buf, count);
drivers/net/ethernet/davicom/dm9000.c
217
ioread8_rep(reg, data, count);
drivers/spi/spi-aspeed-smc.c
173
ioread8_rep(src, (u8 *)buf + offset, len);
drivers/spi/spi-aspeed-smc.c
948
ioread8_rep(ahb_base, rx_buf, xfer->len);
drivers/spi/spi-cadence-xspi.c
592
ioread8_rep(cdns_xspi->sdmabase,
drivers/spi/spi-s3c64xx.c
683
ioread8_rep(regs + S3C64XX_SPI_RX_DATA,
drivers/spi/spi-synquacer.c
153
ioread8_rep(sspi->regs + SYNQUACER_HSSPI_REG_RX_FIFO,
drivers/ssb/pci.c
1015
ioread8_rep(addr, buffer, count);
drivers/usb/musb/musb_core.c
394
ioread8_rep(fifo, dst, len);
include/asm-generic/io.h
1006
#ifndef ioread8_rep
include/asm-generic/io.h
1007
#define ioread8_rep ioread8_rep
include/asm-generic/iomap.h
62
extern void ioread8_rep(const void __iomem *port, void *buf, unsigned long count);
lib/iomap.c
378
EXPORT_SYMBOL(ioread8_rep);