diff options
| author | Alex Elder <elder@linaro.org> | 2023-01-04 11:52:31 -0600 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2023-01-05 22:03:14 -0800 |
| commit | 482ae3a993e479254533cc6f37ab606e9a7baf86 (patch) | |
| tree | 0a175355075122929eaec45f2b1d13ed3da6f2b4 /drivers/net/ipa/ipa_uc.h | |
| parent | d50ed35587193e8e3b201769c785dc4bc61852b0 (diff) | |
| download | linux-next-482ae3a993e479254533cc6f37ab606e9a7baf86.tar.gz linux-next-482ae3a993e479254533cc6f37ab606e9a7baf86.zip | |
net: ipa: register IPA interrupt handlers directly
Declare the microcontroller IPA interrupt handler publicly, and
assign it directly in ipa_interrupt_config(). Make the SUSPEND IPA
interrupt handler public, and rename it ipa_power_suspend_handler().
Assign it directly in ipa_interrupt_config() as well.
This makes it unnecessary to do this in ipa_interrupt_add(). Make
similar changes for removing IPA interrupt handlers.
The next two patches will finish the cleanup, removing the
add/remove functions and the handler array entirely.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/ipa/ipa_uc.h')
| -rw-r--r-- | drivers/net/ipa/ipa_uc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/ipa/ipa_uc.h b/drivers/net/ipa/ipa_uc.h index 8514096e6f36..85aa0df818c2 100644 --- a/drivers/net/ipa/ipa_uc.h +++ b/drivers/net/ipa/ipa_uc.h @@ -7,6 +7,14 @@ #define _IPA_UC_H_ struct ipa; +enum ipa_irq_id; + +/** + * ipa_uc_interrupt_handler() - Handler for microcontroller IPA interrupts + * @ipa: IPA pointer + * @irq_id: IPA interrupt ID + */ +void ipa_uc_interrupt_handler(struct ipa *ipa, enum ipa_irq_id irq_id); /** * ipa_uc_config() - Configure the IPA microcontroller subsystem |
