| 94 | static const char g_zeroes[32] __aligned(32); |
| 95 | |
| 96 | static inline uint32_t |
| 97 | ccp_read_4(struct ccp_softc *sc, uint32_t offset) |
| 98 | { |
| 99 | return (bus_space_read_4(sc->pci_bus_tag, sc->pci_bus_handle, offset)); |
| 100 | } |
| 101 | |
| 102 | static inline void |
| 103 | ccp_write_4(struct ccp_softc *sc, uint32_t offset, uint32_t value) |
no test coverage detected