On Tue, Jan 27, 2015 at 07:11:50PM -0800, Bjorn Andersson wrote:
On Tue 27 Jan 14:10 PST 2015, Andy Gross wrote:
This solution looks good, just some style things.
quoted
diff --git a/drivers/soc/qcom/qcom_gsbi.c b/drivers/soc/qcom/qcom_gsbi.c
[..]
quoted
+#define MAX_GSBI 12
+
+#define TCSR_ADM_CRCI_BASE 0x70
+
+struct crci_config {
+ u32 num_rows;
+ const u32 *array;
Making this:
const u32 (*array)[MAX_GSBI];
ok, i'll switch to do this instead and change the usage down below.
<snip>
quoted
+ else
+ val = 0;
+
+ regmap_update_bits(gsbi->tcsr,
+ TCSR_ADM_CRCI_BASE + 0x4*i,
+ config->array[i*MAX_GSBI + gsbi_num - 1], val);
To me this would be cleaner:
mask = config->array[i][gsbi_num - 1];
if (gsbi->mode == GSBI_PRO_SPI)
regmap_update_bits(gsbi->tcsr, TCSR_ADM_CRCI_BASE + i * 4, mask, mask);
else
regmap_update_bits(gsbi->tcsr, TCSR_ADM_CRCI_BASE + i * 4, mask, 0);
i had considered doing something similar. It does make it cleaner, so I'll do
this.
quoted
+ }
+
There should be an extra set of {} around the if statment body.
done
--
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project