diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-09-27 11:49:27 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-10-02 14:33:23 +0200 |
commit | e195a331c4124a6527e5e1b6fbd93a6b4a984d7b (patch) | |
tree | 9b06cc3e40fe50eee949ced8dac39d10a3a9f6c2 /sound/usb/line6/capture.h | |
parent | 729fbfc92a4563405f3962051e7b25fec3a7bd10 (diff) | |
download | lwn-e195a331c4124a6527e5e1b6fbd93a6b4a984d7b.tar.gz lwn-e195a331c4124a6527e5e1b6fbd93a6b4a984d7b.zip |
ALSA: line6: make snd_pcm_ops const
Make these const as they are only passed to a const argument of the
function snd_pcm_set_ops in the file referencing them. Also, add const
to the declaration in the headers.
Structures found using Coccinelle and changes done by hand.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Reviewed-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/line6/capture.h')
-rw-r--r-- | sound/usb/line6/capture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/line6/capture.h b/sound/usb/line6/capture.h index 890b21bff18c..b67ccc39fd25 100644 --- a/sound/usb/line6/capture.h +++ b/sound/usb/line6/capture.h @@ -17,7 +17,7 @@ #include "driver.h" #include "pcm.h" -extern struct snd_pcm_ops snd_line6_capture_ops; +extern const struct snd_pcm_ops snd_line6_capture_ops; extern void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf, int fsize); |