1
0
Fork 0

netx/xc: add a few "const"s to fix compiler warnings

the fixed warnings are:

	arch/arm/mach-netx/xc.c: In function ‘xc_request_firmware’:
	arch/arm/mach-netx/xc.c:152: warning: assignment discards qualifiers from pointer target type
	arch/arm/mach-netx/xc.c:162: warning: assignment discards qualifiers from pointer target type

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
hifive-unleashed-5.1
Uwe Kleine-König 2008-12-09 21:57:25 +01:00
parent 2fcfe6b872
commit e0a84ebd48
1 changed files with 3 additions and 3 deletions

View File

@ -92,10 +92,10 @@ static int xc_check_ptr(struct xc *x, unsigned long adr, unsigned int size)
return -1;
}
static int xc_patch(struct xc *x, void *patch, int count)
static int xc_patch(struct xc *x, const void *patch, int count)
{
unsigned int val, adr;
unsigned int *data = patch;
const unsigned int *data = patch;
int i;
for (i = 0; i < count; i++) {
@ -117,7 +117,7 @@ int xc_request_firmware(struct xc *x)
struct fw_header *head;
unsigned int size;
int i;
void *src;
const void *src;
unsigned long dst;
sprintf(name, "xc%d.bin", x->no);