* t4_fixup_host_params - fix up host-dependent parameters (T4 compatible) * @adap: the adapter * @page_size: the host's Base Page Size * @cache_line_size: the host's Cache Line Size * * Various registers in T4 contain values which are dependent on the * host's Base Page and Cache Line Sizes. This function will fix all of * those registers with the appropriate values as passed in ... * *
| 3660 | * This routine makes changes which are compatible with T4 chips. |
| 3661 | */ |
| 3662 | int t4_fixup_host_params(struct adapter *adap, unsigned int page_size, |
| 3663 | unsigned int cache_line_size) |
| 3664 | { |
| 3665 | return t4_fixup_host_params_compat(adap, page_size, cache_line_size, |
| 3666 | T4_LAST_REV); |
| 3667 | } |
| 3668 | |
| 3669 | /** |
| 3670 | * t4_fw_initialize - ask FW to initialize the device |
nothing calls this directly
no test coverage detected