Lines Matching defs:routing
479 u16 routing, u16 offset)
484 control = routing;
490 u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset)
494 if (routing == B43_SHM_SHARED) {
498 b43_shm_control_word(dev, routing, offset >> 2);
500 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
507 b43_shm_control_word(dev, routing, offset);
513 u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset)
517 if (routing == B43_SHM_SHARED) {
521 b43_shm_control_word(dev, routing, offset >> 2);
528 b43_shm_control_word(dev, routing, offset);
534 void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value)
536 if (routing == B43_SHM_SHARED) {
540 b43_shm_control_word(dev, routing, offset >> 2);
543 b43_shm_control_word(dev, routing, (offset >> 2) + 1);
550 b43_shm_control_word(dev, routing, offset);
554 void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value)
556 if (routing == B43_SHM_SHARED) {
560 b43_shm_control_word(dev, routing, offset >> 2);
566 b43_shm_control_word(dev, routing, offset);
4828 /* Enable IRQ routing to this device. */