Browse Source

drm/msm: constify irq_domain_ops

struct irq_domain_ops is not modified, so it can be made const.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Tobias Klauser 8 years ago
parent
commit
c43dd227f4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gpu/drm/msm/mdp/mdp5/mdp5_mdss.c

+ 1 - 1
drivers/gpu/drm/msm/mdp/mdp5/mdp5_mdss.c

@@ -116,7 +116,7 @@ static int mdss_hw_irqdomain_map(struct irq_domain *d, unsigned int irq,
 	return 0;
 }
 
-static struct irq_domain_ops mdss_hw_irqdomain_ops = {
+static const struct irq_domain_ops mdss_hw_irqdomain_ops = {
 	.map = mdss_hw_irqdomain_map,
 	.xlate = irq_domain_xlate_onecell,
 };