Lines Matching refs:offset

57 static u16 b43_bus_bcma_read16(struct b43_bus_dev *dev, u16 offset)  in b43_bus_bcma_read16()  argument
59 return bcma_read16(dev->bdev, offset); in b43_bus_bcma_read16()
61 static u32 b43_bus_bcma_read32(struct b43_bus_dev *dev, u16 offset) in b43_bus_bcma_read32() argument
63 return bcma_read32(dev->bdev, offset); in b43_bus_bcma_read32()
66 void b43_bus_bcma_write16(struct b43_bus_dev *dev, u16 offset, u16 value) in b43_bus_bcma_write16() argument
68 bcma_write16(dev->bdev, offset, value); in b43_bus_bcma_write16()
71 void b43_bus_bcma_write32(struct b43_bus_dev *dev, u16 offset, u32 value) in b43_bus_bcma_write32() argument
73 bcma_write32(dev->bdev, offset, value); in b43_bus_bcma_write32()
77 size_t count, u16 offset, u8 reg_width) in b43_bus_bcma_block_read() argument
79 bcma_block_read(dev->bdev, buffer, count, offset, reg_width); in b43_bus_bcma_block_read()
83 size_t count, u16 offset, u8 reg_width) in b43_bus_bcma_block_write() argument
85 bcma_block_write(dev->bdev, buffer, count, offset, reg_width); in b43_bus_bcma_block_write()
163 static u16 b43_bus_ssb_read16(struct b43_bus_dev *dev, u16 offset) in b43_bus_ssb_read16() argument
165 return ssb_read16(dev->sdev, offset); in b43_bus_ssb_read16()
167 static u32 b43_bus_ssb_read32(struct b43_bus_dev *dev, u16 offset) in b43_bus_ssb_read32() argument
169 return ssb_read32(dev->sdev, offset); in b43_bus_ssb_read32()
171 static void b43_bus_ssb_write16(struct b43_bus_dev *dev, u16 offset, u16 value) in b43_bus_ssb_write16() argument
173 ssb_write16(dev->sdev, offset, value); in b43_bus_ssb_write16()
175 static void b43_bus_ssb_write32(struct b43_bus_dev *dev, u16 offset, u32 value) in b43_bus_ssb_write32() argument
177 ssb_write32(dev->sdev, offset, value); in b43_bus_ssb_write32()
180 size_t count, u16 offset, u8 reg_width) in b43_bus_ssb_block_read() argument
182 ssb_block_read(dev->sdev, buffer, count, offset, reg_width); in b43_bus_ssb_block_read()
186 size_t count, u16 offset, u8 reg_width) in b43_bus_ssb_block_write() argument
188 ssb_block_write(dev->sdev, buffer, count, offset, reg_width); in b43_bus_ssb_block_write()