* [U-Boot] [PATCH v2] ARMV7: Vexpress: Add missing MMC header
@ 2011-05-23 17:40 Dirk Behme
2011-05-31 18:18 ` Albert ARIBAUD
0 siblings, 1 reply; 4+ messages in thread
From: Dirk Behme @ 2011-05-23 17:40 UTC (permalink / raw)
To: u-boot
From: Dirk Behme <dirk.behme@googlemail.com>
Add a header file with the missing function prototype to fix
ca9x4_ct_vxp.c: In function 'cpu_mmc_init':
ca9x4_ct_vxp.c:93: warning: implicit declaration of function 'arm_pl180_mmci_init'
introduced by commit "ARMV7: Vexpress: Add MMC support"
(f0c64526b7e51ba997a0f1baf9e74e6d497b957e)
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
CC: Andy Fleming <afleming@freescale.com>
CC: Matt Waddel <matt.waddel@linaro.org>
---
Changes in v2: Switch angle braces to quotes.
Note: Maybe it would be better to move
int arm_pl180_mmci_init(void);
from drivers/mmc/arm_pl180_mmci.h to a header in the
include directory?
board/armltd/vexpress/ca9x4_ct_vxp.c | 1 +
1 file changed, 1 insertion(+)
Index: u-boot.git/board/armltd/vexpress/ca9x4_ct_vxp.c
===================================================================
--- u-boot.git.orig/board/armltd/vexpress/ca9x4_ct_vxp.c
+++ u-boot.git/board/armltd/vexpress/ca9x4_ct_vxp.c
@@ -38,6 +38,7 @@
#include <asm/arch/systimer.h>
#include <asm/arch/sysctrl.h>
#include <asm/arch/wdt.h>
+#include "../drivers/mmc/arm_pl180_mmci.h"
static ulong timestamp;
static ulong lastdec;
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v2] ARMV7: Vexpress: Add missing MMC header
2011-05-23 17:40 [U-Boot] [PATCH v2] ARMV7: Vexpress: Add missing MMC header Dirk Behme
@ 2011-05-31 18:18 ` Albert ARIBAUD
2011-05-31 18:41 ` Dirk Behme
0 siblings, 1 reply; 4+ messages in thread
From: Albert ARIBAUD @ 2011-05-31 18:18 UTC (permalink / raw)
To: u-boot
Le 23/05/2011 19:40, Dirk Behme a ?crit :
> From: Dirk Behme<dirk.behme@googlemail.com>
>
> Add a header file with the missing function prototype to fix
>
> ca9x4_ct_vxp.c: In function 'cpu_mmc_init':
> ca9x4_ct_vxp.c:93: warning: implicit declaration of function 'arm_pl180_mmci_init'
>
> introduced by commit "ARMV7: Vexpress: Add MMC support"
> (f0c64526b7e51ba997a0f1baf9e74e6d497b957e)
>
> Signed-off-by: Dirk Behme<dirk.behme@googlemail.com>
> CC: Andy Fleming<afleming@freescale.com>
> CC: Matt Waddel<matt.waddel@linaro.org>
>
> ---
>
> Changes in v2: Switch angle braces to quotes.
Applied to u-boot-arm/next, thanks -- that will go in master at next
merge window.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v2] ARMV7: Vexpress: Add missing MMC header
2011-05-31 18:18 ` Albert ARIBAUD
@ 2011-05-31 18:41 ` Dirk Behme
2011-05-31 20:26 ` Albert ARIBAUD
0 siblings, 1 reply; 4+ messages in thread
From: Dirk Behme @ 2011-05-31 18:41 UTC (permalink / raw)
To: u-boot
On 31.05.2011 20:18, Albert ARIBAUD wrote:
> Le 23/05/2011 19:40, Dirk Behme a ?crit :
>> From: Dirk Behme<dirk.behme@googlemail.com>
>>
>> Add a header file with the missing function prototype to fix
>>
>> ca9x4_ct_vxp.c: In function 'cpu_mmc_init':
>> ca9x4_ct_vxp.c:93: warning: implicit declaration of function
>> 'arm_pl180_mmci_init'
>>
>> introduced by commit "ARMV7: Vexpress: Add MMC support"
>> (f0c64526b7e51ba997a0f1baf9e74e6d497b957e)
>>
>> Signed-off-by: Dirk Behme<dirk.behme@googlemail.com>
>> CC: Andy Fleming<afleming@freescale.com>
>> CC: Matt Waddel<matt.waddel@linaro.org>
>>
>> ---
>>
>> Changes in v2: Switch angle braces to quotes.
>
> Applied to u-boot-arm/next, thanks -- that will go in master at next
> merge window.
Thanks!
Hmm, but why next? This would mean we release v2011.06 with the above
warning? I thought that fixing warnings introduced while the merge
window is one of the things a rc cycle is good for?
Best regards
Dirk
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v2] ARMV7: Vexpress: Add missing MMC header
2011-05-31 18:41 ` Dirk Behme
@ 2011-05-31 20:26 ` Albert ARIBAUD
0 siblings, 0 replies; 4+ messages in thread
From: Albert ARIBAUD @ 2011-05-31 20:26 UTC (permalink / raw)
To: u-boot
Hi Dirk,
Le 31/05/2011 20:41, Dirk Behme a ?crit :
> On 31.05.2011 20:18, Albert ARIBAUD wrote:
>> Le 23/05/2011 19:40, Dirk Behme a ?crit :
>>> From: Dirk Behme<dirk.behme@googlemail.com>
>>>
>>> Add a header file with the missing function prototype to fix
>>>
>>> ca9x4_ct_vxp.c: In function 'cpu_mmc_init':
>>> ca9x4_ct_vxp.c:93: warning: implicit declaration of function
>>> 'arm_pl180_mmci_init'
>>>
>>> introduced by commit "ARMV7: Vexpress: Add MMC support"
>>> (f0c64526b7e51ba997a0f1baf9e74e6d497b957e)
>>>
>>> Signed-off-by: Dirk Behme<dirk.behme@googlemail.com>
>>> CC: Andy Fleming<afleming@freescale.com>
>>> CC: Matt Waddel<matt.waddel@linaro.org>
>>>
>>> ---
>>>
>>> Changes in v2: Switch angle braces to quotes.
>>
>> Applied to u-boot-arm/next, thanks -- that will go in master at next
>> merge window.
>
> Thanks!
>
> Hmm, but why next? This would mean we release v2011.06 with the above
> warning? I thought that fixing warnings introduced while the merge
> window is one of the things a rc cycle is good for?
Hmm, you're right, I overlooked the date of the commit that caused the
warning. Moving from next to master, then, with my apologies.
> Best regards
>
> Dirk
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-05-31 20:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-23 17:40 [U-Boot] [PATCH v2] ARMV7: Vexpress: Add missing MMC header Dirk Behme
2011-05-31 18:18 ` Albert ARIBAUD
2011-05-31 18:41 ` Dirk Behme
2011-05-31 20:26 ` Albert ARIBAUD
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox