diff options
| author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-04-27 08:52:10 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2015-04-27 15:50:05 -0400 |
| commit | 77f5f3e9c86dc4604366a567819cc3ec4bdb4400 (patch) | |
| tree | 48e2ddde68dd5ba8706ab5887aee2c0799e106b0 /drivers/base | |
| parent | b787f68c36d49bb1d9236f403813641efa74a031 (diff) | |
regmap: Constify irq_domain_ops
The irq_domain_ops are not modified by the driver and the irqdomain core
code accepts pointer to a const data.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/base')
| -rw-r--r-- | drivers/base/regmap/regmap-irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-irq.c b/drivers/base/regmap/regmap-irq.c index a6c3f75b4b01..e7273bb890be 100644 --- a/drivers/base/regmap/regmap-irq.c +++ b/drivers/base/regmap/regmap-irq.c | |||
| @@ -318,7 +318,7 @@ static int regmap_irq_map(struct irq_domain *h, unsigned int virq, | |||
| 318 | return 0; | 318 | return 0; |
| 319 | } | 319 | } |
| 320 | 320 | ||
| 321 | static struct irq_domain_ops regmap_domain_ops = { | 321 | static const struct irq_domain_ops regmap_domain_ops = { |
| 322 | .map = regmap_irq_map, | 322 | .map = regmap_irq_map, |
| 323 | .xlate = irq_domain_xlate_twocell, | 323 | .xlate = irq_domain_xlate_twocell, |
| 324 | }; | 324 | }; |
