pcxhr: treat firmware data as const

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
David Woodhouse 2008-05-24 00:02:28 +01:00 committed by David Woodhouse
parent 93a9c901c8
commit b8d21807a1

View file

@ -269,7 +269,7 @@ int pcxhr_load_xilinx_binary(struct pcxhr_mgr *mgr, const struct firmware *xilin
unsigned int chipsc; unsigned int chipsc;
unsigned char data; unsigned char data;
unsigned char mask; unsigned char mask;
unsigned char *image; const unsigned char *image;
/* test first xilinx */ /* test first xilinx */
chipsc = PCXHR_INPL(mgr, PCXHR_PLX_CHIPSC); chipsc = PCXHR_INPL(mgr, PCXHR_PLX_CHIPSC);
@ -316,7 +316,7 @@ static int pcxhr_download_dsp(struct pcxhr_mgr *mgr, const struct firmware *dsp)
int err; int err;
unsigned int i; unsigned int i;
unsigned int len; unsigned int len;
unsigned char *data; const unsigned char *data;
unsigned char dummy; unsigned char dummy;
/* check the length of boot image */ /* check the length of boot image */
snd_assert(dsp->size > 0, return -EINVAL); snd_assert(dsp->size > 0, return -EINVAL);