summaryrefslogtreecommitdiff
path: root/sound/pci/hda/hda_controller.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2015-04-16 12:14:17 +0200
committerTakashi Iwai <tiwai@suse.de>2015-04-16 12:14:17 +0200
commit1604eeee8899e3b8421ba41b1abcdc48501bc0a0 (patch)
tree020811d6abac72d6720df44c3ca9c78ba44cff91 /sound/pci/hda/hda_controller.h
parent4cfe99c7f9592573e85a9768cfb2a8d7a7962618 (diff)
ALSA: hda - Drop azx_sd_read*/write*() macros
They are no longer used (only one place which can be replaced with a proper helper function). Let's drop. 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.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/sound/pci/hda/hda_controller.h b/sound/pci/hda/hda_controller.h
index e8edb02c12d3..407cba6577b8 100644
--- a/sound/pci/hda/hda_controller.h
+++ b/sound/pci/hda/hda_controller.h
@@ -185,19 +185,6 @@ struct azx {
#define azx_readb(chip, reg) \
snd_hdac_chip_readb(azx_bus(chip), reg)
-#define azx_sd_writel(chip, dev, reg, value) \
- snd_hdac_stream_writel(&(dev)->core, reg, value)
-#define azx_sd_readl(chip, dev, reg) \
- snd_hdac_stream_readl(&(dev)->core, reg)
-#define azx_sd_writew(chip, dev, reg, value) \
- snd_hdac_stream_writew(&(dev)->core, reg, value)
-#define azx_sd_readw(chip, dev, reg) \
- snd_hdac_stream_readw(&(dev)->core, reg)
-#define azx_sd_writeb(chip, dev, reg, value) \
- snd_hdac_stream_writeb(&(dev)->core, reg, value)
-#define azx_sd_readb(chip, dev, reg) \
- snd_hdac_stream_readb(&(dev)->core, reg)
-
#define azx_has_pm_runtime(chip) \
(!AZX_DCAPS_PM_RUNTIME || ((chip)->driver_caps & AZX_DCAPS_PM_RUNTIME))