| 501 | } |
| 502 | |
| 503 | static __inline void |
| 504 | bus_space_write_4(bus_space_tag_t tag, bus_space_handle_t bsh, |
| 505 | bus_size_t offset, u_int32_t value) |
| 506 | { |
| 507 | |
| 508 | if (tag == X86_BUS_SPACE_IO) |
| 509 | outl(bsh + offset, value); |
| 510 | else |
| 511 | *(volatile u_int32_t *)(bsh + offset) = value; |
| 512 | } |
| 513 | |
| 514 | #ifdef __amd64__ |
| 515 | static __inline void |
no test coverage detected