Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54d1d2f5 authored by Vinod Koul's avatar Vinod Koul Committed by Takashi Iwai
Browse files

ALSA: hdac: fix the spbmaxfifo API



spbmaxfifo API is actually a query function not a set function so
name it snd_hdac_ext_stream_get_spbmaxfifo()

Reported-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent e57690b1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -107,7 +107,7 @@ void snd_hdac_ext_stop_streams(struct hdac_ext_bus *sbus);


int snd_hdac_ext_stream_set_spib(struct hdac_ext_bus *ebus,
int snd_hdac_ext_stream_set_spib(struct hdac_ext_bus *ebus,
				 struct hdac_ext_stream *stream, u32 value);
				 struct hdac_ext_stream *stream, u32 value);
int snd_hdac_ext_stream_set_spbmaxfifo(struct hdac_ext_bus *ebus,
int snd_hdac_ext_stream_get_spbmaxfifo(struct hdac_ext_bus *ebus,
				 struct hdac_ext_stream *stream);
				 struct hdac_ext_stream *stream);


void snd_hdac_ext_link_stream_start(struct hdac_ext_stream *hstream);
void snd_hdac_ext_link_stream_start(struct hdac_ext_stream *hstream);
+3 −3
Original line number Original line Diff line number Diff line
@@ -461,13 +461,13 @@ int snd_hdac_ext_stream_set_spib(struct hdac_ext_bus *ebus,
EXPORT_SYMBOL_GPL(snd_hdac_ext_stream_set_spib);
EXPORT_SYMBOL_GPL(snd_hdac_ext_stream_set_spib);


/**
/**
 * snd_hdac_ext_stream_set_spbmaxfifo - sets the spib value of a stream
 * snd_hdac_ext_stream_get_spbmaxfifo - gets the spib value of a stream
 * @ebus: HD-audio ext core bus
 * @ebus: HD-audio ext core bus
 * @stream: hdac_ext_stream
 * @stream: hdac_ext_stream
 *
 *
 * Return maxfifo for the stream
 * Return maxfifo for the stream
 */
 */
int snd_hdac_ext_stream_set_spbmaxfifo(struct hdac_ext_bus *ebus,
int snd_hdac_ext_stream_get_spbmaxfifo(struct hdac_ext_bus *ebus,
				 struct hdac_ext_stream *stream)
				 struct hdac_ext_stream *stream)
{
{
	struct hdac_bus *bus = &ebus->bus;
	struct hdac_bus *bus = &ebus->bus;
@@ -479,7 +479,7 @@ int snd_hdac_ext_stream_set_spbmaxfifo(struct hdac_ext_bus *ebus,


	return readl(stream->fifo_addr);
	return readl(stream->fifo_addr);
}
}
EXPORT_SYMBOL_GPL(snd_hdac_ext_stream_set_spbmaxfifo);
EXPORT_SYMBOL_GPL(snd_hdac_ext_stream_get_spbmaxfifo);




/**
/**