Commit 2f0600b6 authored by David Woodhouse's avatar David Woodhouse Committed by David Woodhouse

vx: treat firmware data as const

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent b8d21807
...@@ -453,7 +453,7 @@ int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *boot) ...@@ -453,7 +453,7 @@ int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *boot)
vx_outb(chip, TXM, 0); vx_outb(chip, TXM, 0);
vx_outb(chip, TXL, 0); vx_outb(chip, TXL, 0);
} else { } else {
unsigned char *image = boot->data + i; const unsigned char *image = boot->data + i;
if (vx_wait_isr_bit(chip, ISR_TX_EMPTY) < 0) { if (vx_wait_isr_bit(chip, ISR_TX_EMPTY) < 0) {
snd_printk(KERN_ERR "dsp boot failed at %d\n", i); snd_printk(KERN_ERR "dsp boot failed at %d\n", i);
return -EIO; return -EIO;
...@@ -671,7 +671,7 @@ int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp) ...@@ -671,7 +671,7 @@ int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp)
unsigned int i; unsigned int i;
int err; int err;
unsigned int csum = 0; unsigned int csum = 0;
unsigned char *image, *cptr; const unsigned char *image, *cptr;
snd_assert(dsp->size % 3 == 0, return -EINVAL); snd_assert(dsp->size % 3 == 0, return -EINVAL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment