Commit 5c090aa8 authored by Martin Kaiser's avatar Martin Kaiser Committed by Greg Kroah-Hartman
Browse files

staging: r8188eu: relay errors from ODM_ReadAndConfig_...



Most of the ODM_ReadAndConfig_... functions return an error status.
Update their callers to process these return values.

Signed-off-by: default avatarMartin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20220110124638.6909-7-martin@kaiser.cx


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 05274a84
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -360,24 +360,24 @@ void ODM_PhyStatusQuery(struct odm_dm_struct *dm_odm,

enum HAL_STATUS ODM_ConfigRFWithHeaderFile(struct odm_dm_struct *dm_odm)
{
	ODM_ReadAndConfig_RadioA_1T_8188E(dm_odm);

	return HAL_STATUS_SUCCESS;
	return ODM_ReadAndConfig_RadioA_1T_8188E(dm_odm);
}

enum HAL_STATUS ODM_ConfigBBWithHeaderFile(struct odm_dm_struct *dm_odm,
					   enum odm_bb_config_type config_tp)
{
	if (config_tp == CONFIG_BB_PHY_REG)
		ODM_ReadAndConfig_PHY_REG_1T_8188E(dm_odm);
	else if (config_tp == CONFIG_BB_AGC_TAB)
		ODM_ReadAndConfig_AGC_TAB_1T_8188E(dm_odm);
	else if (config_tp == CONFIG_BB_PHY_REG_PG)
	if (config_tp == CONFIG_BB_PHY_REG) {
		return ODM_ReadAndConfig_PHY_REG_1T_8188E(dm_odm);
	} else if (config_tp == CONFIG_BB_AGC_TAB) {
		return ODM_ReadAndConfig_AGC_TAB_1T_8188E(dm_odm);
	} else if (config_tp == CONFIG_BB_PHY_REG_PG) {
		ODM_ReadAndConfig_PHY_REG_PG_8188E(dm_odm);

		return HAL_STATUS_SUCCESS;
	}

	return HAL_STATUS_FAILURE;
}

enum HAL_STATUS ODM_ConfigMACWithHeaderFile(struct odm_dm_struct *dm_odm)
{
	return ODM_ReadAndConfig_MAC_REG_8188E(dm_odm);