lkml.org 
[lkml]   [2019]   [Sep]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] iio: light: bh1750: Move static keyword to the front of declaration
On Sun, 8 Sep 2019 15:52:09 +0200
Krzysztof Wilczynski <kw@linux.com> wrote:

> Hello Jonathan,
>
> Thank you for feedback.
>
> [...]
> > > drivers/iio/light/bh1750.c:64:1: warning:
> > > ‘static’ is not at beginning of declaration [-Wold-style-declaration]
> [...]
> > This one has me confused. The warning seems to be false as static
> > is at the beginning of the declaration....
> >
> > Sure we "could" combine the declaration with the definition as you have
> > done here, but that has nothing much to do with the warning.
> [...]
>
> I only moved the "static const" at the front, I haven't changed the
> code as it's already has been a declaration and definition. There is
> no semicolon there and the original author put a newline to separate
> things which makes it look as if these were separate.
>
> Simple example based on the existing code:
>
> https://godbolt.org/z/hV4HP7
>
> I hope this helps to illustrate the change in the patch. I apologise
> if my approach was incorrect.
>
> As part of the patch I removed the newline in an aim to make it less
> confusing to anyone who will read the code in the future. Especially,
> since it makes it a bit awkward to read and when using things like
> grep.
>
> Krzysztof

I get what you are trying to do, the issue is the code is currently:

struct bh1750_chip_info {
u16 mtreg_min;
u16 mtreg_max;
u16 mtreg_default;
int mtreg_to_usec;
int mtreg_to_scale;

/*
* For BH1710/BH1721 all possible integration time values won't fit
* into one page so displaying is limited to every second one.
* Note, that user can still write proper values which were not
* listed.
*/
int inc;

u16 int_time_low_mask;
u16 int_time_high_mask;
}

static const bh1750_chip_info_tbl[] = {
[BH1710] = { 140, 1022, 300, 400, 250000000, 2, 0x001F, 0x03E0 },
[BH1721] = { 140, 1020, 300, 400, 250000000, 2, 0x0010, 0x03E0 },
[BH1750] = { 31, 254, 69, 1740, 57500000, 1, 0x001F, 0x00E0 },
};

That test is supposed to catch the second block being

const static bh1750_chip_info_tbl[] = {
...

Which it isn't. So the issue here was never that the static keyword
wasn't at the front of the declaration but that we could save a tiny
bit code by using the pattern

static const struct bh1750_chip_info {
...
} bh1750_chip_info_tbl[] {
[...] = ...
};

We can do that of course, but that's nothing to do with moving the static
keyword to the front of the declaration which is what the patch claims
to be doing.

Jonathan





\
 
 \ /
  Last update: 2019-09-10 15:37    [W:0.075 / U:1.108 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site