1
0
Fork 0

c6x: kernel: setup: Remove 'const' for local variables in machine_init

early_init_dt_scan() accepts "void *", the related warning:

    CC      arch/c6x/kernel/setup.o
  arch/c6x/kernel/setup.c: In function 'machine_init':
  arch/c6x/kernel/setup.c:290:21: warning: passing argument 1 of 'early_init_dt_scan' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
    early_init_dt_scan(fdt);
                       ^
  In file included from arch/c6x/kernel/setup.c:19:0:
  include/linux/of_fdt.h:75:13: note: expected 'void *' but argument is of type 'const void *'
   extern bool early_init_dt_scan(void *params);
               ^

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Mark Salter <msalter@redhat.com>
hifive-unleashed-5.1
Chen Gang 2015-03-04 04:55:06 +08:00 committed by Mark Salter
parent 1d2a64bd2d
commit 1a394e1a36
1 changed files with 2 additions and 2 deletions

View File

@ -265,8 +265,8 @@ int __init c6x_add_memory(phys_addr_t start, unsigned long size)
*/
notrace void __init machine_init(unsigned long dt_ptr)
{
const void *dtb = __va(dt_ptr);
const void *fdt = _fdt_start;
void *dtb = __va(dt_ptr);
void *fdt = _fdt_start;
/* interrupts must be masked */
set_creg(IER, 2);