Lines Matching refs:l
29 __le32 l; in virtio_mmio_get_config() local
51 l = cpu_to_le32(readl(base + offset)); in virtio_mmio_get_config()
52 memcpy(buf, &l, sizeof(l)); in virtio_mmio_get_config()
55 l = cpu_to_le32(readl(base + offset)); in virtio_mmio_get_config()
56 memcpy(buf, &l, sizeof(l)); in virtio_mmio_get_config()
57 l = cpu_to_le32(readl(base + offset + sizeof(l))); in virtio_mmio_get_config()
58 memcpy(buf + sizeof(l), &l, sizeof(l)); in virtio_mmio_get_config()
74 __le32 l; in virtio_mmio_set_config() local
96 memcpy(&l, buf, sizeof(l)); in virtio_mmio_set_config()
97 writel(le32_to_cpu(l), base + offset); in virtio_mmio_set_config()
100 memcpy(&l, buf, sizeof(l)); in virtio_mmio_set_config()
101 writel(le32_to_cpu(l), base + offset); in virtio_mmio_set_config()
102 memcpy(&l, buf + sizeof(l), sizeof(l)); in virtio_mmio_set_config()
103 writel(le32_to_cpu(l), base + offset + sizeof(l)); in virtio_mmio_set_config()