]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
api: fix type mismatch
authorMatthias Fuchs <matthias.fuchs@esd-electronics.com>
Sat, 4 Oct 2008 17:26:16 +0000 (19:26 +0200)
committerWolfgang Denk <wd@denx.de>
Tue, 14 Oct 2008 20:49:57 +0000 (22:49 +0200)
This patch fixes a type mismatch and thus removes a compiler
warning when compiling with CONFIG_API on powerpc.

Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
api/api_platform-ppc.c

index ca9f9a5cd19d0f3778261a051d37c0be93d8c04d..611a01b5ecb78e7344da66085acf20337e26bb71 100644 (file)
@@ -66,7 +66,7 @@ int platform_sys_info(struct sys_info *si)
        si->bar = gd->bd->bi_bar;
 #undef bi_bar
 #else
-       si->bar = NULL;
+       si->bar = 0;
 #endif
 
        platform_set_mr(si, gd->bd->bi_memstart, gd->bd->bi_memsize, MR_ATTR_DRAM);