Skip to content

Commit

Permalink
ARM: EXYNOS: Fix compilation warning
Browse files Browse the repository at this point in the history
of_get_flat_dt_prop return type is now const.
Fixes the following compilation warning introduced by commit 9d0c4df
("of/fdt: update of_get_flat_dt_prop in prep for libfdt")

arch/arm/mach-exynos/exynos.c:259:6: warning:
assignment discards ‘const’ qualifier from pointer target type [enabled by default]

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Reviewed-by: Tushar Behera <tushar.behera@linaro.org>
Cc: Rob Herring <robh@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Sachin Kamat authored and Arnd Bergmann committed Jun 17, 2014
1 parent 1754c42 commit 3eb9364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-exynos/exynos.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
int depth, void *data)
{
struct map_desc iodesc;
__be32 *reg;
const __be32 *reg;
int len;

if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
Expand Down

0 comments on commit 3eb9364

Please sign in to comment.