mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
ALSA: xen-front: Refine indentations and constify snd_pcm_ops
snd_pcm_ops are not supposed to change. So mark the non-const structs as const. Also, refine indentation to ncrease readability. Signed-off-by: Nick Simonov <nicksimonovv@gmail.com> Reviewed-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
05e2ec3b00
commit
e53134fefd
1 changed files with 23 additions and 23 deletions
|
@ -637,7 +637,7 @@ static int alsa_pb_fill_silence(struct snd_pcm_substream *substream,
|
||||||
* to know when the buffer can be transferred to the backend.
|
* to know when the buffer can be transferred to the backend.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static struct snd_pcm_ops snd_drv_alsa_playback_ops = {
|
static const struct snd_pcm_ops snd_drv_alsa_playback_ops = {
|
||||||
.open = alsa_open,
|
.open = alsa_open,
|
||||||
.close = alsa_close,
|
.close = alsa_close,
|
||||||
.ioctl = snd_pcm_lib_ioctl,
|
.ioctl = snd_pcm_lib_ioctl,
|
||||||
|
@ -651,7 +651,7 @@ static struct snd_pcm_ops snd_drv_alsa_playback_ops = {
|
||||||
.fill_silence = alsa_pb_fill_silence,
|
.fill_silence = alsa_pb_fill_silence,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct snd_pcm_ops snd_drv_alsa_capture_ops = {
|
static const struct snd_pcm_ops snd_drv_alsa_capture_ops = {
|
||||||
.open = alsa_open,
|
.open = alsa_open,
|
||||||
.close = alsa_close,
|
.close = alsa_close,
|
||||||
.ioctl = snd_pcm_lib_ioctl,
|
.ioctl = snd_pcm_lib_ioctl,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue