Lines Matching refs:routing
483 u16 routing, u16 offset) in b43_shm_control_word() argument
488 control = routing; in b43_shm_control_word()
494 u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset) in b43_shm_read32() argument
498 if (routing == B43_SHM_SHARED) { in b43_shm_read32()
502 b43_shm_control_word(dev, routing, offset >> 2); in b43_shm_read32()
504 b43_shm_control_word(dev, routing, (offset >> 2) + 1); in b43_shm_read32()
511 b43_shm_control_word(dev, routing, offset); in b43_shm_read32()
517 u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset) in b43_shm_read16() argument
521 if (routing == B43_SHM_SHARED) { in b43_shm_read16()
525 b43_shm_control_word(dev, routing, offset >> 2); in b43_shm_read16()
532 b43_shm_control_word(dev, routing, offset); in b43_shm_read16()
538 void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value) in b43_shm_write32() argument
540 if (routing == B43_SHM_SHARED) { in b43_shm_write32()
544 b43_shm_control_word(dev, routing, offset >> 2); in b43_shm_write32()
547 b43_shm_control_word(dev, routing, (offset >> 2) + 1); in b43_shm_write32()
554 b43_shm_control_word(dev, routing, offset); in b43_shm_write32()
558 void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value) in b43_shm_write16() argument
560 if (routing == B43_SHM_SHARED) { in b43_shm_write16()
564 b43_shm_control_word(dev, routing, offset >> 2); in b43_shm_write16()
570 b43_shm_control_word(dev, routing, offset); in b43_shm_write16()