diff options
author | Dylan Reid <dgreid@chromium.org> | 2014-03-01 03:41:29 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-03-01 14:23:24 +0400 |
commit | f0b1df88713a3537e056658d860f6631653ec5c6 (patch) | |
tree | f3f8904494c6a15c4ebbf58e9b205f44d2904998 /sound/pci/hda/hda_controller.h | |
parent | 7ca954a86b1f2e42af9299eb2ac142bcb5c9bd67 (diff) | |
download | linux-f0b1df88713a3537e056658d860f6631653ec5c6.tar.xz |
ALSA: hda - Move azx_interrupt to hda_controller
This code will be reused by an hda_platform driver as it has no PCI
dependencies. This allows update_rirb to be static as all users are
now in hda_controller.c.
Signed-off-by: Dylan Reid <dgreid@chromium.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_controller.h')
-rw-r--r-- | sound/pci/hda/hda_controller.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_controller.h b/sound/pci/hda/hda_controller.h index 67d9f28a669f..fac929948f19 100644 --- a/sound/pci/hda/hda_controller.h +++ b/sound/pci/hda/hda_controller.h @@ -50,7 +50,6 @@ void azx_free_stream_pages(struct azx *chip); /* * CORB / RIRB interface */ -void azx_update_rirb(struct azx *chip); int azx_send_cmd(struct hda_bus *bus, unsigned int val); unsigned int azx_get_response(struct hda_bus *bus, unsigned int addr); @@ -59,5 +58,6 @@ unsigned int azx_get_response(struct hda_bus *bus, void azx_init_chip(struct azx *chip, int full_reset); void azx_stop_chip(struct azx *chip); void azx_enter_link_reset(struct azx *chip); +irqreturn_t azx_interrupt(int irq, void *dev_id); #endif /* __SOUND_HDA_CONTROLLER_H */ |