]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fdt_support: add 'const' qualifier for unchanged argument
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Fri, 18 Apr 2014 08:41:02 +0000 (17:41 +0900)
committerTom Rini <trini@ti.com>
Thu, 19 Jun 2014 15:18:50 +0000 (11:18 -0400)
In the next commit, I will add a new function, fdt_pack_reg()
which uses get_cells_len().

Beforehand, this commit adds 'const' qualifier to get_cells_len().
Otherwise, a warning message will appear:
 warning: passing argument 1 of 'get_cells_len' discards 'const'
 qualifier from pointer target type [enabled by default]

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
common/fdt_support.c

index 9a9151a342bacf96461fd733088de6219e36eaed..fe85a8be1c381cc4a97e6795d74eb99b7dd0dc4e 100644 (file)
  *     if #NNNN-cells property is 2 then len is 8
  *     otherwise len is 4
  */
-static int get_cells_len(void *blob, char *nr_cells_name)
+static int get_cells_len(const void *fdt, const char *nr_cells_name)
 {
        const fdt32_t *cell;
 
-       cell = fdt_getprop(blob, 0, nr_cells_name, NULL);
+       cell = fdt_getprop(fdt, 0, nr_cells_name, NULL);
        if (cell && fdt32_to_cpu(*cell) == 2)
                return 8;