diff options
Diffstat (limited to 'src/mainboard')
5 files changed, 15 insertions, 15 deletions
diff --git a/src/mainboard/siemens/mc_apl1/variants/mc_apl1/lcd_panel.c b/src/mainboard/siemens/mc_apl1/variants/mc_apl1/lcd_panel.c index 8a20f364d5..bad4da79ea 100644 --- a/src/mainboard/siemens/mc_apl1/variants/mc_apl1/lcd_panel.c +++ b/src/mainboard/siemens/mc_apl1/variants/mc_apl1/lcd_panel.c @@ -10,7 +10,7 @@ * @param edid_data pointer to EDID data in driver * @return CB_SUCCESS on successful EDID data retrieval, CB_ERR otherwise */ -enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) +enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]) { const char *hwi_block = "hwinfo.hex"; @@ -31,7 +31,7 @@ enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) * which has to be used. * @return Index of the EDID slot selected for EDID emulation */ -uint8_t mb_select_edid_table(void) +uint8_t mainboard_ptn3460_select_edid_table(void) { return 6; /* With this mainboard we use EDID block 6 for emulation in PTN3460. */ } @@ -41,7 +41,7 @@ uint8_t mb_select_edid_table(void) * @param *cfg_ptr Pointer to the PTN config structure to modify * @return CB_SUCCESS if data was modified and needs to be updated; CB_ERR on error */ -enum cb_err mb_adjust_cfg(struct ptn_3460_config *cfg) +enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg) { const char *hwi_block = "hwinfo.hex"; uint8_t disp_con = 0, color_depth = 0; diff --git a/src/mainboard/siemens/mc_apl1/variants/mc_apl4/lcd_panel.c b/src/mainboard/siemens/mc_apl1/variants/mc_apl4/lcd_panel.c index 39cc274e21..7f4334eb9e 100644 --- a/src/mainboard/siemens/mc_apl1/variants/mc_apl4/lcd_panel.c +++ b/src/mainboard/siemens/mc_apl1/variants/mc_apl4/lcd_panel.c @@ -10,7 +10,7 @@ * @param edid_data pointer to EDID data in driver * @return CB_SUCCESS on successful EDID data retrieval, CB_ERR otherwise */ -enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) +enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]) { const char *hwi_block = "hwinfo.hex"; @@ -31,7 +31,7 @@ enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) * which has to be used. * @return Index of the EDID slot selected for EDID emulation */ -uint8_t mb_select_edid_table(void) +uint8_t mainboard_ptn3460_select_edid_table(void) { return 6; /* With this mainboard we use EDID block 6 for emulation in PTN3460. */ } @@ -41,7 +41,7 @@ uint8_t mb_select_edid_table(void) * @param *cfg_ptr Pointer to the PTN config structure to modify * @return CB_SUCCESS if data was modified and needs to be updated; CB_ERR on error */ -enum cb_err mb_adjust_cfg(struct ptn_3460_config *cfg) +enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg) { const char *hwi_block = "hwinfo.hex"; uint8_t disp_con = 0, color_depth = 0; diff --git a/src/mainboard/siemens/mc_apl1/variants/mc_apl5/lcd_panel.c b/src/mainboard/siemens/mc_apl1/variants/mc_apl5/lcd_panel.c index c74e90ab61..320fcc7f47 100644 --- a/src/mainboard/siemens/mc_apl1/variants/mc_apl5/lcd_panel.c +++ b/src/mainboard/siemens/mc_apl1/variants/mc_apl5/lcd_panel.c @@ -33,7 +33,7 @@ static void igd_disable(void) * @param edid_data pointer to EDID data in driver * @return CB_SUCCESS on successful EDID data retrieval, CB_ERR otherwise */ -enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) +enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]) { const char *hwi_block = "hwinfo.hex"; @@ -56,7 +56,7 @@ enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) * which has to be used. * @return Index of the EDID slot selected for EDID emulation */ -uint8_t mb_select_edid_table(void) +uint8_t mainboard_ptn3460_select_edid_table(void) { return 6; /* With this mainboard we use EDID block 6 for emulation in PTN3460. */ } @@ -66,7 +66,7 @@ uint8_t mb_select_edid_table(void) * @param *cfg_ptr Pointer to the PTN config structure to modify * @return CB_SUCCESS if data was modified and needs to be updated; CB_ERR on error */ -enum cb_err mb_adjust_cfg(struct ptn_3460_config *cfg) +enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg) { const char *hwi_block = "hwinfo.hex"; uint8_t disp_con = 0, color_depth = 0; diff --git a/src/mainboard/siemens/mc_apl1/variants/mc_apl7/lcd_panel.c b/src/mainboard/siemens/mc_apl1/variants/mc_apl7/lcd_panel.c index 39cc274e21..7f4334eb9e 100644 --- a/src/mainboard/siemens/mc_apl1/variants/mc_apl7/lcd_panel.c +++ b/src/mainboard/siemens/mc_apl1/variants/mc_apl7/lcd_panel.c @@ -10,7 +10,7 @@ * @param edid_data pointer to EDID data in driver * @return CB_SUCCESS on successful EDID data retrieval, CB_ERR otherwise */ -enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) +enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]) { const char *hwi_block = "hwinfo.hex"; @@ -31,7 +31,7 @@ enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) * which has to be used. * @return Index of the EDID slot selected for EDID emulation */ -uint8_t mb_select_edid_table(void) +uint8_t mainboard_ptn3460_select_edid_table(void) { return 6; /* With this mainboard we use EDID block 6 for emulation in PTN3460. */ } @@ -41,7 +41,7 @@ uint8_t mb_select_edid_table(void) * @param *cfg_ptr Pointer to the PTN config structure to modify * @return CB_SUCCESS if data was modified and needs to be updated; CB_ERR on error */ -enum cb_err mb_adjust_cfg(struct ptn_3460_config *cfg) +enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg) { const char *hwi_block = "hwinfo.hex"; uint8_t disp_con = 0, color_depth = 0; diff --git a/src/mainboard/siemens/mc_ehl/variants/mc_ehl3/lcd_panel.c b/src/mainboard/siemens/mc_ehl/variants/mc_ehl3/lcd_panel.c index 965f62d57d..a4985c1c21 100644 --- a/src/mainboard/siemens/mc_ehl/variants/mc_ehl3/lcd_panel.c +++ b/src/mainboard/siemens/mc_ehl/variants/mc_ehl3/lcd_panel.c @@ -10,7 +10,7 @@ * @param edid_data pointer to EDID data in driver * @return CB_SUCCESS on successful EDID data retrieval, CB_ERR otherwise */ -enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) +enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]) { const char *hwi_block = "hwinfo.hex"; @@ -31,7 +31,7 @@ enum cb_err mb_get_edid(uint8_t edid_data[PTN_EDID_LEN]) * which has to be used. * @return Index of the EDID slot selected for EDID emulation */ -uint8_t mb_select_edid_table(void) +uint8_t mainboard_ptn3460_select_edid_table(void) { return 6; /* With this mainboard we use EDID block 6 for emulation in PTN3460. */ } @@ -41,7 +41,7 @@ uint8_t mb_select_edid_table(void) * @param *cfg_ptr Pointer to the PTN config structure to modify * @return CB_SUCCESS if data was modified and needs to be updated; CB_ERR on error */ -enum cb_err mb_adjust_cfg(struct ptn_3460_config *cfg) +enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg) { const char *hwi_block = "hwinfo.hex"; uint8_t disp_con = 0, color_depth = 0; |