diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2014-03-04 13:48:51 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-03-19 04:58:36 -0400 |
commit | 2802c94c3981ce3024ff8b3526b8b2ff26351923 (patch) | |
tree | 67589481e00b9d64c4d95a1958b3491e194c62ec /drivers/mfd | |
parent | 6a5926e6975c9bca2ef6ff68cbd1cc17afc0e7d8 (diff) |
mfd: pm8921: Drop irq_set_lockdep_class() code
This isn't necessary as we aren't setting the summary interrupt
to wake up the system in the irq_wake() callback.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/pm8921-core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mfd/pm8921-core.c b/drivers/mfd/pm8921-core.c index 3aab6ace5eb5..4d486e91b602 100644 --- a/drivers/mfd/pm8921-core.c +++ b/drivers/mfd/pm8921-core.c | |||
@@ -310,14 +310,11 @@ bail_out: | |||
310 | return rc; | 310 | return rc; |
311 | } | 311 | } |
312 | 312 | ||
313 | static struct lock_class_key pm8xxx_irq_lock_class; | ||
314 | |||
315 | static int pm8xxx_irq_domain_map(struct irq_domain *d, unsigned int irq, | 313 | static int pm8xxx_irq_domain_map(struct irq_domain *d, unsigned int irq, |
316 | irq_hw_number_t hwirq) | 314 | irq_hw_number_t hwirq) |
317 | { | 315 | { |
318 | struct pm_irq_chip *chip = d->host_data; | 316 | struct pm_irq_chip *chip = d->host_data; |
319 | 317 | ||
320 | irq_set_lockdep_class(irq, &pm8xxx_irq_lock_class); | ||
321 | irq_set_chip_and_handler(irq, &pm8xxx_irq_chip, handle_level_irq); | 318 | irq_set_chip_and_handler(irq, &pm8xxx_irq_chip, handle_level_irq); |
322 | irq_set_chip_data(irq, chip); | 319 | irq_set_chip_data(irq, chip); |
323 | #ifdef CONFIG_ARM | 320 | #ifdef CONFIG_ARM |