| 58 | } |
| 59 | |
| 60 | int |
| 61 | sfc_tbls_start(struct sfc_adapter *sa) |
| 62 | { |
| 63 | struct sfc_tbls *tables = &sa->hw_tables; |
| 64 | int rc; |
| 65 | |
| 66 | if (tables->status == SFC_TBLS_STATUS_UNKNOWN) { |
| 67 | rc = sfc_tbls_attach(sa); |
| 68 | return rc; |
| 69 | } |
| 70 | |
| 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | static uint32_t |
| 75 | sfc_tbls_field_update(uint32_t in, uint16_t lbn, uint16_t width, uint32_t value) |
no test coverage detected