Skip to content

Commit

Permalink
gpio: tegra: Make of_device_id compatible data to constant
Browse files Browse the repository at this point in the history
The data member of the of_device_id is the constant type
and hence all static structure which is used for this
initialisation as static.

Signed-off-by: Laxman Dewangan <[email protected]>
Suggested-by: Thierry Reding <[email protected]>
Reviewed-by: Stephen Warren <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
  • Loading branch information
ldewangan authored and linusw committed Apr 29, 2016
1 parent 171b92c commit 804f568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpio/gpio-tegra.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,12 +560,12 @@ static int tegra_gpio_probe(struct platform_device *pdev)
return 0;
}

static struct tegra_gpio_soc_config tegra20_gpio_config = {
static const struct tegra_gpio_soc_config tegra20_gpio_config = {
.bank_stride = 0x80,
.upper_offset = 0x800,
};

static struct tegra_gpio_soc_config tegra30_gpio_config = {
static const struct tegra_gpio_soc_config tegra30_gpio_config = {
.bank_stride = 0x100,
.upper_offset = 0x80,
};
Expand Down

0 comments on commit 804f568

Please sign in to comment.