diff options
Diffstat (limited to 'programmer.h')
-rw-r--r-- | programmer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/programmer.h b/programmer.h index 49a9d29d..c5cab18b 100644 --- a/programmer.h +++ b/programmer.h @@ -133,6 +133,9 @@ enum programmer { #if CONFIG_LSPCON_I2C_SPI == 1 PROGRAMMER_LSPCON_I2C_SPI, #endif +#if CONFIG_REALTEK_MST_I2C_SPI == 1 + PROGRAMMER_REALTEK_MST_I2C_SPI, +#endif PROGRAMMER_INVALID /* This must always be the last entry. */ }; @@ -819,4 +822,9 @@ struct libusb_device_handle *usb_dev_get_by_vid_pid_number( int lspcon_i2c_spi_init(void); #endif +/* realtek_mst_i2c_spi.c */ +#if CONFIG_REALTEK_MST_I2C_SPI == 1 +int realtek_mst_i2c_spi_init(void); +#endif + #endif /* !__PROGRAMMER_H__ */ |