diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 22:20:29 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-25 14:25:29 +0300 |
commit | 0a56c0e1e7ad4dc3721e96c499f3074cb6867cfe (patch) | |
tree | 9bddd3a4e5f884ab28fb7ce67f191f3586d213b3 /drivers/w1/masters/w1-gpio.c | |
parent | 4d8beff2ae07fad85d723b4cdf704b05f0ed4794 (diff) | |
download | linux-0a56c0e1e7ad4dc3721e96c499f3074cb6867cfe.tar.xz |
w1: constify of_device_id array
of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1/masters/w1-gpio.c')
-rw-r--r-- | drivers/w1/masters/w1-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/w1/masters/w1-gpio.c b/drivers/w1/masters/w1-gpio.c index b99a932ad901..8f7848c62811 100644 --- a/drivers/w1/masters/w1-gpio.c +++ b/drivers/w1/masters/w1-gpio.c @@ -68,7 +68,7 @@ static u8 w1_gpio_read_bit(void *data) } #if defined(CONFIG_OF) -static struct of_device_id w1_gpio_dt_ids[] = { +static const struct of_device_id w1_gpio_dt_ids[] = { { .compatible = "w1-gpio" }, {} }; |