Lines Matching defs:iomap_ops
44 struct iomap_ops { struct
45 unsigned int (*read8)(void __iomem *);
46 unsigned int (*read16)(void __iomem *);
47 unsigned int (*read16be)(void __iomem *);
48 unsigned int (*read32)(void __iomem *);
49 unsigned int (*read32be)(void __iomem *);
50 void (*write8)(u8, void __iomem *);
51 void (*write16)(u16, void __iomem *);
52 void (*write16be)(u16, void __iomem *);
53 void (*write32)(u32, void __iomem *);
54 void (*write32be)(u32, void __iomem *);
55 void (*read8r)(void __iomem *, void *, unsigned long);
56 void (*read16r)(void __iomem *, void *, unsigned long);
57 void (*read32r)(void __iomem *, void *, unsigned long);
58 void (*write8r)(void __iomem *, const void *, unsigned long);
59 void (*write16r)(void __iomem *, const void *, unsigned long);
60 void (*write32r)(void __iomem *, const void *, unsigned long);
265 static const struct iomap_ops *iomap_ops[8] = { variable