Merge "asoc: bolero: Bringup fixes in Vipertooth"
This commit is contained in:
commit
ab8586d542
2 changed files with 3 additions and 3 deletions
|
@ -758,7 +758,7 @@ static bool bolero_is_readable_register(struct device *dev,
|
|||
return false;
|
||||
|
||||
reg_tbl = bolero_reg_access[macro_id];
|
||||
reg_offset = reg - macro_id_base_offset[macro_id];
|
||||
reg_offset = (reg - macro_id_base_offset[macro_id])/4;
|
||||
|
||||
if (reg_tbl)
|
||||
return (reg_tbl[reg_offset] & RD_REG);
|
||||
|
@ -783,7 +783,7 @@ static bool bolero_is_writeable_register(struct device *dev,
|
|||
return false;
|
||||
|
||||
reg_tbl = bolero_reg_access[macro_id];
|
||||
reg_offset = reg - macro_id_base_offset[macro_id];
|
||||
reg_offset = (reg - macro_id_base_offset[macro_id])/4;
|
||||
|
||||
if (reg_tbl)
|
||||
return (reg_tbl[reg_offset] & WR_REG);
|
||||
|
|
|
@ -1430,7 +1430,7 @@ static int va_macro_probe(struct platform_device *pdev)
|
|||
char __iomem *va_io_base;
|
||||
struct clk *va_core_clk;
|
||||
bool va_without_decimation = false;
|
||||
const char *micb_supply_str = "va-vdd-micb-supply";
|
||||
const char *micb_supply_str = "va-vdd-micb";
|
||||
const char *micb_voltage_str = "qcom,va-vdd-micb-voltage";
|
||||
const char *micb_current_str = "qcom,va-vdd-micb-current";
|
||||
int ret = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue