* [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration
@ 2008-02-17 21:56 Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Jean-Christophe PLAGNIOL-VILLARD
2008-02-18 19:31 ` [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration Andy Fleming
0 siblings, 2 replies; 16+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-17 21:56 UTC (permalink / raw)
To: u-boot
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/include/configs/sbc8548.h b/include/configs/sbc8548.h
index 0a7a904..516203a 100644
--- a/include/configs/sbc8548.h
+++ b/include/configs/sbc8548.h
@@ -168,7 +168,7 @@
#define CFG_OR0_PRELIM 0xff806e65
#define CFG_OR6_PRELIM 0xfc006e65
-#define CFG_FLASH_BANKS_LIST {0xff800000, CFG_FLASH_BASE}
+#define CFG_FLASH_BANKS_LIST {CFG_FLASH_BASE}
#define CFG_MAX_FLASH_BANKS 1 /* number of banks */
#define CFG_MAX_FLASH_SECT 128 /* sectors per device */
#undef CFG_FLASH_CHECKSUM
--
1.5.4.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path'
2008-02-17 21:56 [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-17 21:56 ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jean-Christophe PLAGNIOL-VILLARD
2008-02-18 19:32 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Andy Fleming
2008-02-18 19:31 ` [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration Andy Fleming
1 sibling, 2 replies; 16+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-17 21:56 UTC (permalink / raw)
To: u-boot
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/board/sbc8548/sbc8548.c b/board/sbc8548/sbc8548.c
index 65052e6..d57548a 100644
--- a/board/sbc8548/sbc8548.c
+++ b/board/sbc8548/sbc8548.c
@@ -56,9 +56,10 @@ int checkboard (void)
{
volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
volatile ccsr_local_ecm_t *ecm = (void *)(CFG_MPC85xx_ECM_ADDR);
+ volatile u_char *rev= (void *)CFG_BD_REV;
printf ("Board: Wind River SBC8548 Rev. 0x%01x\n",
- (volatile)(*(u_char *)CFG_BD_REV) >> 4);
+ (*rev) >> 4);
/*
* Initialize local bus.
@@ -533,12 +534,12 @@ void
ft_pci_setup(void *blob, bd_t *bd)
{
int node, tmp[2];
- const char *path;
node = fdt_path_offset(blob, "/aliases");
tmp[0] = 0;
if (node >= 0) {
#ifdef CONFIG_PCI1
+ const char *path;
path = fdt_getprop(blob, node, "pci0", NULL);
if (path) {
tmp[1] = pci1_hose.last_busno - pci1_hose.first_busno;
@@ -546,6 +547,7 @@ ft_pci_setup(void *blob, bd_t *bd)
}
#endif
#ifdef CONFIG_PCIE1
+ const char *path;
path = fdt_getprop(blob, node, "pci1", NULL);
if (path) {
tmp[1] = pcie1_hose.last_busno - pcie1_hose.first_busno;
--
1.5.4.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-17 21:56 ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:03 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jean-Christophe PLAGNIOL-VILLARD
` (2 more replies)
2008-02-18 19:32 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Andy Fleming
1 sibling, 3 replies; 16+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-17 21:56 UTC (permalink / raw)
To: u-boot
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c
index e1b3c52..230e2b3 100644
--- a/cpu/mpc86xx/cpu.c
+++ b/cpu/mpc86xx/cpu.c
@@ -325,6 +325,7 @@ ft_cpu_setup(void *blob, bd_t *bd)
if (p != NULL)
memcpy(p, bd->bi_enet3addr, 6);
#endif
+}
#endif /* CONFIG_OF_FLAT_TREE */
/*
--
1.5.4.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-17 22:03 ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:35 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jean-Christophe PLAGNIOL-VILLARD
2008-02-18 17:32 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jon Loeliger
2008-02-18 16:49 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jon Loeliger
2008-02-18 17:24 ` Jon Loeliger
2 siblings, 2 replies; 16+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-17 22:03 UTC (permalink / raw)
To: u-boot
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/cpu/mpc86xx/cpu_init.c b/cpu/mpc86xx/cpu_init.c
index ab5906d..0efd855 100644
--- a/cpu/mpc86xx/cpu_init.c
+++ b/cpu/mpc86xx/cpu_init.c
@@ -28,6 +28,7 @@
#include <common.h>
#include <mpc86xx.h>
+#include <asm/fsl_law.h>
DECLARE_GLOBAL_DATA_PTR;
--
1.5.4.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap'
2008-02-17 22:03 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-17 22:35 ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:52 ` [U-Boot-Users] [PATCH] uli526x: Fix multiple differ in signedness and parentheses around comparison Jean-Christophe PLAGNIOL-VILLARD
2008-02-18 17:50 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jon Loeliger
2008-02-18 17:32 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jon Loeliger
1 sibling, 2 replies; 16+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-17 22:35 UTC (permalink / raw)
To: u-boot
and remove useless CONFIG_DDR_INTERLEAVE
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/cpu/mpc86xx/spd_sdram.c b/cpu/mpc86xx/spd_sdram.c
index e501caf..60a7818 100644
--- a/cpu/mpc86xx/spd_sdram.c
+++ b/cpu/mpc86xx/spd_sdram.c
@@ -943,7 +943,7 @@ unsigned int enable_ddr(unsigned int ddr_num)
spd_eeprom_t spd1,spd2;
volatile ccsr_ddr_t *ddr;
unsigned sdram_cfg_1;
- unsigned char sdram_type, mem_type, config, mod_attr;
+ unsigned char sdram_type, mem_type, mod_attr;
unsigned char d_init;
unsigned int no_dimm1=0, no_dimm2=0;
@@ -1017,6 +1017,10 @@ unsigned int enable_ddr(unsigned int ddr_num)
printf("No memory modules found for DDR controller %d!!\n", ddr_num);
return 0;
} else {
+
+#if defined(CONFIG_DDR_ECC)
+ unsigned char config;
+#endif
mem_type = no_dimm2 ? spd1.mem_type : spd2.mem_type;
/*
@@ -1122,8 +1126,8 @@ spd_sdram(void)
int memsize_ddr1_dimm2 = 0;
int memsize_ddr1 = 0;
unsigned int law_size_ddr1;
- volatile immap_t *immap = (immap_t *)CFG_IMMR;
#ifdef CONFIG_DDR_INTERLEAVE
+ volatile immap_t *immap = (immap_t *)CFG_IMMR;
volatile ccsr_ddr_t *ddr1 = &immap->im_ddr1;
#endif
@@ -1183,7 +1187,6 @@ spd_sdram(void)
#endif
debug("Interleaved memory size is 0x%08lx\n", memsize_total);
-#ifdef CONFIG_DDR_INTERLEAVE
#if (CFG_PAGE_INTERLEAVING == 1)
printf("Page ");
#elif (CFG_BANK_INTERLEAVING == 1)
@@ -1193,7 +1196,6 @@ spd_sdram(void)
#else
printf("Cache-line ");
#endif
-#endif
printf("Interleaved");
return memsize_total * 1024 * 1024;
} else {
--
1.5.4.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] uli526x: Fix multiple differ in signedness and parentheses around comparison
2008-02-17 22:35 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-17 22:52 ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-22 11:11 ` Wolfgang Denk
2008-02-18 17:50 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jon Loeliger
1 sibling, 1 reply; 16+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-17 22:52 UTC (permalink / raw)
To: u-boot
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/drivers/net/uli526x.c b/drivers/net/uli526x.c
index 8460f69..d64845f 100644
--- a/drivers/net/uli526x.c
+++ b/drivers/net/uli526x.c
@@ -32,9 +32,9 @@
#define ULI5261_DEVICE_ID 0x5261
#define ULI5263_DEVICE_ID 0x5263
/* ULi M5261 ID*/
-#define PCI_ULI5261_ID ULI5261_DEVICE_ID << 16 | ULI_VENDOR_ID
+#define PCI_ULI5261_ID (ULI5261_DEVICE_ID << 16 | ULI_VENDOR_ID)
/* ULi M5263 ID*/
-#define PCI_ULI5263_ID ULI5263_DEVICE_ID << 16 | ULI_VENDOR_ID
+#define PCI_ULI5263_ID (ULI5263_DEVICE_ID << 16 | ULI_VENDOR_ID)
#define ULI526X_IO_SIZE 0x100
#define TX_DESC_CNT 0x10 /* Allocated Tx descriptors */
@@ -281,7 +281,7 @@ static int uli526x_init_one(struct eth_device *dev, bd_t *bis)
if (db->desc_pool_ptr == NULL)
return -1;
- db->buf_pool_ptr = &buf_pool[0];
+ db->buf_pool_ptr = (uchar *)&buf_pool[0];
db->buf_pool_dma_ptr = (dma_addr_t)&buf_pool[0];
if (db->buf_pool_ptr == NULL)
return -1;
@@ -588,7 +588,7 @@ static int uli526x_rx_packet(struct eth_device *dev)
__FUNCTION__, i, rxptr->rx_buf_ptr[i]);
#endif
- NetReceive(rxptr->rx_buf_ptr, rxlen);
+ NetReceive((uchar *)rxptr->rx_buf_ptr, rxlen);
uli526x_reuse_buf(rxptr);
} else {
@@ -656,7 +656,7 @@ static void uli526x_descriptor_init(struct uli526x_board_info *db,
tmp_tx_dma = db->first_tx_desc_dma;
for (tmp_tx = db->first_tx_desc, i = 0;
i < TX_DESC_CNT; i++, tmp_tx++) {
- tmp_tx->tx_buf_ptr = tmp_buf;
+ tmp_tx->tx_buf_ptr = (char *)tmp_buf;
tmp_tx->tdes0 = cpu_to_le32(0);
tmp_tx->tdes1 = cpu_to_le32(0x81000000); /* IC, chain */
tmp_tx->tdes2 = cpu_to_le32(tmp_buf_dma);
--
1.5.4.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:03 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-18 16:49 ` Jon Loeliger
2008-02-18 17:24 ` Jon Loeliger
2 siblings, 0 replies; 16+ messages in thread
From: Jon Loeliger @ 2008-02-18 16:49 UTC (permalink / raw)
To: u-boot
Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
> diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c
> index e1b3c52..230e2b3 100644
> --- a/cpu/mpc86xx/cpu.c
> +++ b/cpu/mpc86xx/cpu.c
> @@ -325,6 +325,7 @@ ft_cpu_setup(void *blob, bd_t *bd)
> if (p != NULL)
> memcpy(p, bd->bi_enet3addr, 6);
> #endif
> +}
> #endif /* CONFIG_OF_FLAT_TREE */
>
> /*
As Terri Garr would said, "This is a puzzlement."
All that OF_FLAT_TREE stuff should be _gone_!
I'll investigate.
Thanks,
jdl
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:03 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jean-Christophe PLAGNIOL-VILLARD
2008-02-18 16:49 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jon Loeliger
@ 2008-02-18 17:24 ` Jon Loeliger
2 siblings, 0 replies; 16+ messages in thread
From: Jon Loeliger @ 2008-02-18 17:24 UTC (permalink / raw)
To: u-boot
Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
> diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c
> index e1b3c52..230e2b3 100644
> --- a/cpu/mpc86xx/cpu.c
> +++ b/cpu/mpc86xx/cpu.c
> @@ -325,6 +325,7 @@ ft_cpu_setup(void *blob, bd_t *bd)
> if (p != NULL)
> memcpy(p, bd->bi_enet3addr, 6);
> #endif
> +}
> #endif /* CONFIG_OF_FLAT_TREE */
>
> /*
OK. We're going to NAK this one, and claim that
the real fix is to just trash all that crap inside
the CONFIG_OF_FLAT_TREE that should have been ripped
out in the first place.
Sorry.
jdl
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
2008-02-17 22:03 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:35 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-18 17:32 ` Jon Loeliger
2008-02-18 19:16 ` Becky Bruce
1 sibling, 1 reply; 16+ messages in thread
From: Jon Loeliger @ 2008-02-18 17:32 UTC (permalink / raw)
To: u-boot
Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
> diff --git a/cpu/mpc86xx/cpu_init.c b/cpu/mpc86xx/cpu_init.c
> index ab5906d..0efd855 100644
> --- a/cpu/mpc86xx/cpu_init.c
> +++ b/cpu/mpc86xx/cpu_init.c
> @@ -28,6 +28,7 @@
>
> #include <common.h>
> #include <mpc86xx.h>
> +#include <asm/fsl_law.h>
>
> DECLARE_GLOBAL_DATA_PTR;
>
*sigh* That I'll take and apply.
Thanks,
jdl
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap'
2008-02-17 22:35 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:52 ` [U-Boot-Users] [PATCH] uli526x: Fix multiple differ in signedness and parentheses around comparison Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-18 17:50 ` Jon Loeliger
1 sibling, 0 replies; 16+ messages in thread
From: Jon Loeliger @ 2008-02-18 17:50 UTC (permalink / raw)
To: u-boot
Jean-Christophe PLAGNIOL-VILLARD wrote:
> and remove useless CONFIG_DDR_INTERLEAVE
>
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
Hmmm... While I'll take this for this release, be aware
that all this DDR setup code is actively being rewritten.
It will be totally different soon.
Thanks,
jdl
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
2008-02-18 17:32 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jon Loeliger
@ 2008-02-18 19:16 ` Becky Bruce
2008-02-18 19:35 ` Stefan Roese
0 siblings, 1 reply; 16+ messages in thread
From: Becky Bruce @ 2008-02-18 19:16 UTC (permalink / raw)
To: u-boot
On Feb 18, 2008, at 11:32 AM, Jon Loeliger wrote:
> Jean-Christophe PLAGNIOL-VILLARD wrote:
>> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD
>> <plagnioj@jcrosoft.com>
>>
>> diff --git a/cpu/mpc86xx/cpu_init.c b/cpu/mpc86xx/cpu_init.c
>> index ab5906d..0efd855 100644
>> --- a/cpu/mpc86xx/cpu_init.c
>> +++ b/cpu/mpc86xx/cpu_init.c
>> @@ -28,6 +28,7 @@
>>
>> #include <common.h>
>> #include <mpc86xx.h>
>> +#include <asm/fsl_law.h>
>>
>> DECLARE_GLOBAL_DATA_PTR;
>>
>
> *sigh* That I'll take and apply.
>
My apologies - I somehow missed this in my patch series. I'm not
used to the incredibly verbose output from uboot build - warnings
don't jump out at you like they do with linux builds.
Thanks for the patch!
-Becky
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration
2008-02-17 21:56 [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-18 19:31 ` Andy Fleming
1 sibling, 0 replies; 16+ messages in thread
From: Andy Fleming @ 2008-02-18 19:31 UTC (permalink / raw)
To: u-boot
On Feb 17, 2008 3:56 PM, Jean-Christophe PLAGNIOL-VILLARD
<plagnioj@jcrosoft.com> wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Applied, thanks!
Andy
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path'
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-18 19:32 ` Andy Fleming
1 sibling, 0 replies; 16+ messages in thread
From: Andy Fleming @ 2008-02-18 19:32 UTC (permalink / raw)
To: u-boot
On Feb 17, 2008 3:56 PM, Jean-Christophe PLAGNIOL-VILLARD
<plagnioj@jcrosoft.com> wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Applied, thanks!
Andy
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
2008-02-18 19:16 ` Becky Bruce
@ 2008-02-18 19:35 ` Stefan Roese
2008-02-18 19:43 ` Jon Loeliger
0 siblings, 1 reply; 16+ messages in thread
From: Stefan Roese @ 2008-02-18 19:35 UTC (permalink / raw)
To: u-boot
On Monday 18 February 2008, Becky Bruce wrote:
> On Feb 18, 2008, at 11:32 AM, Jon Loeliger wrote:
> > Jean-Christophe PLAGNIOL-VILLARD wrote:
> >> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD
> >> <plagnioj@jcrosoft.com>
> >>
> >> diff --git a/cpu/mpc86xx/cpu_init.c b/cpu/mpc86xx/cpu_init.c
> >> index ab5906d..0efd855 100644
> >> --- a/cpu/mpc86xx/cpu_init.c
> >> +++ b/cpu/mpc86xx/cpu_init.c
> >> @@ -28,6 +28,7 @@
> >>
> >> #include <common.h>
> >> #include <mpc86xx.h>
> >> +#include <asm/fsl_law.h>
> >>
> >> DECLARE_GLOBAL_DATA_PTR;
> >
> > *sigh* That I'll take and apply.
>
> My apologies - I somehow missed this in my patch series. I'm not
> used to the incredibly verbose output from uboot build - warnings
> don't jump out at you like they do with linux builds.
"make -s" is your friend (s for silent).
And I'm still waiting for Jon's patches with the build-system rework with
Linux style compilation output. :)
Best regards,
Stefan
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: office at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
2008-02-18 19:35 ` Stefan Roese
@ 2008-02-18 19:43 ` Jon Loeliger
0 siblings, 0 replies; 16+ messages in thread
From: Jon Loeliger @ 2008-02-18 19:43 UTC (permalink / raw)
To: u-boot
Stefan Roese wrote:
>> My apologies - I somehow missed this in my patch series.
Me three.
>> I'm not
>> used to the incredibly verbose output from uboot build - warnings
>> don't jump out at you like they do with linux builds.
>
> "make -s" is your friend (s for silent).
Well, not _really_... :-)
> And I'm still waiting for Jon's patches
So am I. Has anyone asked him when we'll get them? :-)
> with the build-system rework with
> Linux style compilation output. :)
It's on my list... :-)
jdl
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] [PATCH] uli526x: Fix multiple differ in signedness and parentheses around comparison
2008-02-17 22:52 ` [U-Boot-Users] [PATCH] uli526x: Fix multiple differ in signedness and parentheses around comparison Jean-Christophe PLAGNIOL-VILLARD
@ 2008-02-22 11:11 ` Wolfgang Denk
0 siblings, 0 replies; 16+ messages in thread
From: Wolfgang Denk @ 2008-02-22 11:11 UTC (permalink / raw)
To: u-boot
In message <1203288766-22396-1-git-send-email-plagnioj@jcrosoft.com> you wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Real programmers can write assembly code in any language. :-)
- Larry Wall in <8571@jpl-devvax.JPL.NASA.GOV>
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2008-02-22 11:11 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-17 21:56 [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 21:56 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:03 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:35 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jean-Christophe PLAGNIOL-VILLARD
2008-02-17 22:52 ` [U-Boot-Users] [PATCH] uli526x: Fix multiple differ in signedness and parentheses around comparison Jean-Christophe PLAGNIOL-VILLARD
2008-02-22 11:11 ` Wolfgang Denk
2008-02-18 17:50 ` [U-Boot-Users] [PATCH] mpc86xx: Fix unused variable 'config' and 'immap' Jon Loeliger
2008-02-18 17:32 ` [U-Boot-Users] [PATCH] mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' Jon Loeliger
2008-02-18 19:16 ` Becky Bruce
2008-02-18 19:35 ` Stefan Roese
2008-02-18 19:43 ` Jon Loeliger
2008-02-18 16:49 ` [U-Boot-Users] [PATCH 2/2] mpc86xx: Fix Missing '}' in ft_cpu_setup Jon Loeliger
2008-02-18 17:24 ` Jon Loeliger
2008-02-18 19:32 ` [U-Boot-Users] [PATCH 1/2] sbc8548: Fix Revision reading and unused variable 'path' Andy Fleming
2008-02-18 19:31 ` [U-Boot-Users] [PATCH 0/2] sbc8548: Fix cfi flash bank declaration Andy Fleming
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.