| 123 | } |
| 124 | |
| 125 | int ec_ext_write(uint16_t addr, uint8_t data) |
| 126 | { |
| 127 | send_ec_command(WR_EC); |
| 128 | send_ec_data(0x02); |
| 129 | send_ec_data(addr & 0xff); |
| 130 | send_ec_command(WX_EC); |
| 131 | send_ec_data(addr >> 8); |
| 132 | |
| 133 | return send_ec_data(data); |
| 134 | } |
| 135 | |
| 136 | int ec_write(uint8_t addr, uint8_t data) |
| 137 | { |
nothing calls this directly
no test coverage detected