From: Jerry Van Baren <gvb.uboot@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH 0/2] MPC8xx: Fix libfdt support introduced in commit 77ff7b74
Date: Wed, 02 Apr 2008 08:11:20 -0400 [thread overview]
Message-ID: <47F377E8.8040703@gmail.com> (raw)
In-Reply-To: <1207116238-7253-1-git-send-email-plagnioj@jcrosoft.com>
Jean-Christophe PLAGNIOL-VILLARD wrote:
> fdt.c: In function 'ft_cpu_setup':
> fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
> fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
> fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
> fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
>
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
> diff --git a/cpu/mpc8xx/Makefile b/cpu/mpc8xx/Makefile
> index dbdc2e0..5f70459 100644
> --- a/cpu/mpc8xx/Makefile
> +++ b/cpu/mpc8xx/Makefile
> @@ -27,16 +27,29 @@ include $(TOPDIR)/config.mk
>
> LIB = $(obj)lib$(CPU).a
>
> -START = start.o kgdb.o
> -COBJS = bedbug_860.o commproc.o cpu.o cpu_init.o \
> - fec.o fdt.o i2c.o interrupts.o lcd.o scc.o \
> - serial.o speed.o spi.o \
> - traps.o upatch.o video.o
> -SOBJS = plprcr_write.o
> -
> -SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
> -OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
> -START := $(addprefix $(obj),$(START))
> +START-y += start.o
> +START-y += kgdb.o
> +COBJS-y += bedbug_860.o
> +COBJS-y += commproc.o
> +COBJS-y += cpu.o
> +COBJS-y += cpu_init.o
> +COBJS-y += fec.o
> +COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
> +COBJS-y += i2c.o
> +COBJS-y += interrupts.o
> +COBJS-y += lcd.o
> +COBJS-y += scc.o
> +COBJS-y += serial.o
> +COBJS-y += speed.o
> +COBJS-y += spi.o
> +COBJS-y += traps.o
> +COBJS-y += upatch.o
> +COBJS-y += video.o
> +SOBJS-y += plprcr_write.o
> +
> +SRCS := $(START-y:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
> +OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
> +START := $(addprefix $(obj),$(START-y))
>
> all: $(obj).depend $(START) $(LIB)
I did this too, but did not do as good a job (I did not change SOBJS to
SOBJS-y and START to START-y). Reference for my version:
<http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38885/>
I've replaced my version with J-C's version in u-boot-fdt.
Acked-by: Gerald Van Baren <vanbaren@cideas.com>
P.S. Thanks, Jean-Christophe, for doing a bunch of warning clean up.
next prev parent reply other threads:[~2008-04-02 12:11 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-02 6:03 [U-Boot-Users] [PATCH 0/2] MPC8xx: Fix libfdt support introduced in commit 77ff7b74 Jean-Christophe PLAGNIOL-VILLARD
2008-04-02 6:03 ` [U-Boot-Users] [PATCH 1/2] cmd_log.c: Fix assignment differ in signedness Jean-Christophe PLAGNIOL-VILLARD
2008-04-02 6:03 ` [U-Boot-Users] [PATCH 2/2] ds174x: Fix warning on return in rtc_get and rtc_set function Jean-Christophe PLAGNIOL-VILLARD
2008-04-02 11:37 ` [U-Boot-Users] [PATCH] cmd_nand: Fix warning: dereferencing type-punned pointer will break strict-aliasing rules Jean-Christophe PLAGNIOL-VILLARD
2008-04-02 11:41 ` [U-Boot-Users] [PATCH] mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb' Jean-Christophe PLAGNIOL-VILLARD
2008-04-02 17:50 ` Kim Phillips
2008-04-08 14:40 ` [U-Boot-Users] unassigned-patches/13: " u-boot at bugs.denx.de
2008-04-02 14:34 ` [U-Boot-Users] [PATCH] cmd_nand: Fix warning: dereferencing type-punned pointer will break strict-aliasing rules Stefan Roese
2008-04-02 14:39 ` Wolfgang Denk
2008-04-02 14:50 ` Jean-Christophe PLAGNIOL-VILLARD
2008-04-08 14:40 ` [U-Boot-Users] unassigned-patches/11: " u-boot at bugs.denx.de
2008-04-08 20:49 ` [U-Boot-Users] [U-boot] " Wolfgang Denk
2008-04-08 14:40 ` [U-Boot-Users] unassigned-patches/12: [PATCH 2/2] ds174x: Fix warning on return in rtc_get and rtc_set function u-boot at bugs.denx.de
2008-04-08 21:01 ` [U-Boot-Users] [U-boot] " Wolfgang Denk
2008-04-09 8:46 ` Jean-Christophe PLAGNIOL-VILLARD
2008-04-09 10:42 ` Wolfgang Denk
2008-04-18 4:14 ` [U-Boot-Users] " Wolfgang Denk
2008-04-08 14:40 ` [U-Boot-Users] unassigned-patches/10: [PATCH 1/2] cmd_log.c: Fix assignment differ in signedness u-boot at bugs.denx.de
2008-04-18 4:14 ` [U-Boot-Users] " Wolfgang Denk
2008-04-02 12:11 ` Jerry Van Baren [this message]
2008-04-08 14:40 ` [U-Boot-Users] unassigned-patches/9: [PATCH 0/2] MPC8xx: Fix libfdt support introduced in commit 77ff7b74 u-boot at bugs.denx.de
2008-04-08 20:47 ` [U-Boot-Users] [U-boot] " Wolfgang Denk
2008-04-09 0:04 ` Jerry Van Baren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=47F377E8.8040703@gmail.com \
--to=gvb.uboot@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.