mirror of https://gitee.com/openkylin/linux.git
Staging: bcm: Moved doubled if-block
This patch moves the doubled if block inside the retval-checking one level up. As the if-else-block it was in is now a one-statement if-else block, I removed the braces from it. Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
71928b3a46
commit
40ee5a77ee
|
@ -1214,21 +1214,15 @@ int download_ddr_settings(struct bcm_mini_adapter *Adapter)
|
|||
retval = wrmalt(Adapter, ul_ddr_setting_load_addr, &value, sizeof(value));
|
||||
ul_ddr_setting_load_addr += sizeof(ULONG);
|
||||
if (!retval) {
|
||||
if (bOverrideSelfRefresh && (psDDRSetting->ulRegAddress == 0x0F007018)) {
|
||||
if (bOverrideSelfRefresh && (psDDRSetting->ulRegAddress == 0x0F007018))
|
||||
value = (psDDRSetting->ulRegValue | (1<<8));
|
||||
if (STATUS_SUCCESS != wrmalt(Adapter, ul_ddr_setting_load_addr,
|
||||
&value, sizeof(value))) {
|
||||
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "%s:%d\n", __func__, __LINE__);
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
else
|
||||
value = psDDRSetting->ulRegValue;
|
||||
|
||||
if (STATUS_SUCCESS != wrmalt(Adapter, ul_ddr_setting_load_addr,
|
||||
if (STATUS_SUCCESS != wrmalt(Adapter, ul_ddr_setting_load_addr,
|
||||
&value, sizeof(value))) {
|
||||
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "%s:%d\n", __func__, __LINE__);
|
||||
break;
|
||||
}
|
||||
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "%s:%d\n", __func__, __LINE__);
|
||||
break;
|
||||
}
|
||||
}
|
||||
ul_ddr_setting_load_addr += sizeof(ULONG);
|
||||
|
|
Loading…
Reference in New Issue