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. > > > diff --git a/drivers/soc/qcom/qcom_gsbi.c b/drivers/soc/qcom/qcom_gsbi.c > [..] > > +#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> > > + 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. > > + } > > + > 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 -- To unsubscribe from this list: send the line "unsubscribe linux-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html