ALSA: hda: Remove unused snd_hdac_stream_get_spbmaxfifo
authorDr. David Alan Gilbert <linux@treblig.org>
Mon, 5 May 2025 01:10:37 +0000 (02:10 +0100)
committerTakashi Iwai <tiwai@suse.de>
Thu, 8 May 2025 09:50:21 +0000 (11:50 +0200)
snd_hdac_stream_get_spbmaxfifo() was originally added in 2015
in commit ee8bc4df1b5a ("ALSA: hdac: Add support to enable SPIB for hdac
ext stream")

when it was originally called snd_hdac_ext_stream_set_spbmaxfifo,
it was renamed snd_hdac_ext_stream_get_spbmaxfifo shortly after
and was finally renamed to snd_hdac_stream_get_spbmaxfifo in 2022.
But it was never used.

Remove it.

Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Link: https://patch.msgid.link/20250505011037.340592-1-linux@treblig.org
Signed-off-by: Takashi Iwai <tiwai@suse.de>
include/sound/hdaudio.h
sound/hda/hdac_stream.c

index b098ceadbe74bff4999442f625dfe522a934101a..6257152fa0ce01bd8bd699cf3f3cff21a224dfa7 100644 (file)
@@ -598,8 +598,6 @@ void snd_hdac_stream_spbcap_enable(struct hdac_bus *chip,
                                   bool enable, int index);
 int snd_hdac_stream_set_spib(struct hdac_bus *bus,
                             struct hdac_stream *azx_dev, u32 value);
-int snd_hdac_stream_get_spbmaxfifo(struct hdac_bus *bus,
-                                  struct hdac_stream *azx_dev);
 void snd_hdac_stream_drsm_enable(struct hdac_bus *bus,
                                 bool enable, int index);
 int snd_hdac_stream_wait_drsm(struct hdac_stream *azx_dev);
index 4e85a838ad7e94c7b16abf8faf83543f47007fe8..e7f6208af5b06e715f3cc1c8cb2434502ce87cb6 100644 (file)
@@ -825,25 +825,6 @@ int snd_hdac_stream_set_spib(struct hdac_bus *bus,
 }
 EXPORT_SYMBOL_GPL(snd_hdac_stream_set_spib);
 
-/**
- * snd_hdac_stream_get_spbmaxfifo - gets the spib value of a stream
- * @bus: HD-audio core bus
- * @azx_dev: hdac_stream
- *
- * Return maxfifo for the stream
- */
-int snd_hdac_stream_get_spbmaxfifo(struct hdac_bus *bus,
-                                  struct hdac_stream *azx_dev)
-{
-       if (!bus->spbcap) {
-               dev_err(bus->dev, "Address of SPB capability is NULL\n");
-               return -EINVAL;
-       }
-
-       return readl(azx_dev->fifo_addr);
-}
-EXPORT_SYMBOL_GPL(snd_hdac_stream_get_spbmaxfifo);
-
 /**
  * snd_hdac_stream_drsm_enable - enable DMA resume for a stream
  * @bus: HD-audio core bus