* [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include
@ 2013-12-08 12:29 Nikita Kiryanov
2013-12-08 12:38 ` Nikita Kiryanov
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Nikita Kiryanov @ 2013-12-08 12:29 UTC (permalink / raw)
To: u-boot
ABB code uses LDELAY but does not include the header that provides its
definition.
Include the header.
Cc: Tom Rini <trini@ti.com>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
---
arch/arm/cpu/armv7/omap-common/abb.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/cpu/armv7/omap-common/abb.c b/arch/arm/cpu/armv7/omap-common/abb.c
index a46783f..423aeb9 100644
--- a/arch/arm/cpu/armv7/omap-common/abb.c
+++ b/arch/arm/cpu/armv7/omap-common/abb.c
@@ -11,6 +11,7 @@
#include <common.h>
#include <asm/omap_common.h>
+#include <asm/arch/clock.h>
#include <asm/io.h>
#include <asm/arch/sys_proto.h>
--
1.8.1.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include
2013-12-08 12:29 [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include Nikita Kiryanov
@ 2013-12-08 12:38 ` Nikita Kiryanov
2013-12-09 15:57 ` menon.nishanth at gmail.com
2013-12-13 12:46 ` [U-Boot] [U-Boot,1/4] " Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Nikita Kiryanov @ 2013-12-08 12:38 UTC (permalink / raw)
To: u-boot
Disclaimer: disregard the "1/4". This is supposed to be a standalone
patch, I just forgot to
remove the patch counter before sending.
On 12/08/2013 02:29 PM, Nikita Kiryanov wrote:
> ABB code uses LDELAY but does not include the header that provides its
> definition.
>
> Include the header.
>
> Cc: Tom Rini <trini@ti.com>
> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
> ---
> arch/arm/cpu/armv7/omap-common/abb.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/cpu/armv7/omap-common/abb.c b/arch/arm/cpu/armv7/omap-common/abb.c
> index a46783f..423aeb9 100644
> --- a/arch/arm/cpu/armv7/omap-common/abb.c
> +++ b/arch/arm/cpu/armv7/omap-common/abb.c
> @@ -11,6 +11,7 @@
>
> #include <common.h>
> #include <asm/omap_common.h>
> +#include <asm/arch/clock.h>
> #include <asm/io.h>
> #include <asm/arch/sys_proto.h>
>
>
--
Regards,
Nikita.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include
2013-12-08 12:29 [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include Nikita Kiryanov
2013-12-08 12:38 ` Nikita Kiryanov
@ 2013-12-09 15:57 ` menon.nishanth at gmail.com
2013-12-13 12:46 ` [U-Boot] [U-Boot,1/4] " Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: menon.nishanth at gmail.com @ 2013-12-09 15:57 UTC (permalink / raw)
To: u-boot
On Sun, Dec 8, 2013 at 6:29 AM, Nikita Kiryanov <nikita@compulab.co.il> wrote:
> ABB code uses LDELAY but does not include the header that provides its
> definition.
>
> Include the header.
>
> Cc: Tom Rini <trini@ti.com>
> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Acked-by: Nishanth Menon <nm@ti.com>
> ---
> arch/arm/cpu/armv7/omap-common/abb.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/cpu/armv7/omap-common/abb.c b/arch/arm/cpu/armv7/omap-common/abb.c
> index a46783f..423aeb9 100644
> --- a/arch/arm/cpu/armv7/omap-common/abb.c
> +++ b/arch/arm/cpu/armv7/omap-common/abb.c
> @@ -11,6 +11,7 @@
>
> #include <common.h>
> #include <asm/omap_common.h>
> +#include <asm/arch/clock.h>
> #include <asm/io.h>
> #include <asm/arch/sys_proto.h>
>
> --
> 1.8.1.2
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [U-Boot,1/4] arm: omap: abb: add missing include
2013-12-08 12:29 [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include Nikita Kiryanov
2013-12-08 12:38 ` Nikita Kiryanov
2013-12-09 15:57 ` menon.nishanth at gmail.com
@ 2013-12-13 12:46 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2013-12-13 12:46 UTC (permalink / raw)
To: u-boot
On Sun, Dec 08, 2013 at 02:29:19PM +0200, Nikita Kiryanov wrote:
> ABB code uses LDELAY but does not include the header that provides its
> definition.
>
> Include the header.
>
> Cc: Tom Rini <trini@ti.com>
> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
> Acked-by: Nishanth Menon <nm@ti.com>
Applied to u-boot-ti/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131213/8f2fb160/attachment.pgp>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-12-13 12:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-08 12:29 [U-Boot] [PATCH 1/4] arm: omap: abb: add missing include Nikita Kiryanov
2013-12-08 12:38 ` Nikita Kiryanov
2013-12-09 15:57 ` menon.nishanth at gmail.com
2013-12-13 12:46 ` [U-Boot] [U-Boot,1/4] " Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox