]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
iio: light: bh1750: Resolve compiler warning and make code more readable
authorKrzysztof Wilczynski <kw@linux.com>
Fri, 13 Sep 2019 20:24:13 +0000 (22:24 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 15 Sep 2019 09:47:02 +0000 (10:47 +0100)
Separate the declaration of struct bh1750_chip_info from definition
of bh1750_chip_info_tbl[] in a single statement as it makes the code
hard to read, and with the extra newline it makes it look as if the
bh1750_chip_info_tbl[] had no explicit type.

This change also resolves the following compiler warning about the
unusual position of the static keyword that can be seen when building
with warnings enabled (W=1):

drivers/iio/light/bh1750.c:64:1: warning:
  ‘static’ is not at beginning of declaration [-Wold-style-declaration]

Related to commit 3a11fbb037a1 ("iio: light: add support for ROHM
BH1710/BH1715/BH1721/BH1750/BH1751 ambient light sensors").

Signed-off-by: Krzysztof Wilczynski <kw@linux.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/bh1750.c

index 28347df78cff6830f2a027f89545559e53f811ff..adb5ab9e343909ba2ae3a1a01c65aa27d3009096 100644 (file)
@@ -59,9 +59,9 @@ struct bh1750_chip_info {
 
        u16 int_time_low_mask;
        u16 int_time_high_mask;
-}
+};
 
-static const bh1750_chip_info_tbl[] = {
+static const struct bh1750_chip_info 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 },