17 Apr
2012
17 Apr
'12
3:30 p.m.
On Tue, 2012-04-17 at 15:56 +0100, Mark Brown wrote:
On Tue, Apr 17, 2012 at 08:30:58PM +0530, Ashish Chavan wrote:
if ((fref == da7210_pll_div[cnt].fref) &&
(da7210->master == da7210_pll_div[cnt].mode) &&
(fout == da7210_pll_div[cnt].fout)) {
Since this is just a coding style thing how about lining up the (s for the branches?
To do that we will have to use spaces instead of tab for indentation. I am not sure if that is fine. You mean something like below, right?
if ((fref == da7210_pll_div[cnt].fref) && (da7210->master == da7210_pll_div[cnt].mode) && (fout == da7210_pll_div[cnt].fout)) {