* [PATCH] omap2+: Remove useless Makefile line
@ 2013-04-05 10:12 Paul Bolle
2013-04-08 22:17 ` Tony Lindgren
0 siblings, 1 reply; 4+ messages in thread
From: Paul Bolle @ 2013-04-05 10:12 UTC (permalink / raw)
To: linux-arm-kernel
Commit f41caddbe73f52a42f529d668ce47b4d693fd2c0 ("omap2+: Use Kconfig
symbol in Makefile instead of obj-y") reorganized this Makefile. But,
for some reason, it also added references to CONFIG_MACH_ENCORE and
board-omap3encore.o. But there's no Kconfig symbol MACH_ENCORE and
there's no file board-omap3encore.c. This line can safely be removed.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
arch/arm/mach-omap2/Makefile | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index b068b7f..3d0697c 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -229,7 +229,6 @@ obj-$(CONFIG_MACH_DEVKIT8000) += board-devkit8000.o
obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o
obj-$(CONFIG_MACH_OMAP3530_LV_SOM) += board-omap3logic.o
obj-$(CONFIG_MACH_OMAP3_TORPEDO) += board-omap3logic.o
-obj-$(CONFIG_MACH_ENCORE) += board-omap3encore.o
obj-$(CONFIG_MACH_OVERO) += board-overo.o
obj-$(CONFIG_MACH_OMAP3EVM) += board-omap3evm.o
obj-$(CONFIG_MACH_OMAP3_PANDORA) += board-omap3pandora.o
--
1.7.11.7
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] omap2+: Remove useless Makefile line
@ 2013-04-05 10:16 Paul Bolle
2013-04-08 21:46 ` Tony Lindgren
0 siblings, 1 reply; 4+ messages in thread
From: Paul Bolle @ 2013-04-05 10:16 UTC (permalink / raw)
To: linux-arm-kernel
Merge commit 952414505f55afe5cd6dc004765076aa22b3ed7e ("Merge branch
'next/cleanup' of git://git.linaro.org/people/arnd/arm-soc") added
references to CONFIG_MACH_PCM049 and board-omap4pcm049.o to this
Makefile. But there's no Kconfig symbol MACH_PCM049 and there's no file
board-omap4pcm049.c. This line can safely be removed.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
Note that MACH_PCM049 was removed from mach-types in v3.5.
arch/arm/mach-omap2/Makefile | 2 --
1 file changed, 2 deletions(-)
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index 3d0697c..62bb352 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -254,8 +254,6 @@ obj-$(CONFIG_MACH_TOUCHBOOK) += board-omap3touchbook.o
obj-$(CONFIG_MACH_OMAP_4430SDP) += board-4430sdp.o
obj-$(CONFIG_MACH_OMAP4_PANDA) += board-omap4panda.o
-obj-$(CONFIG_MACH_PCM049) += board-omap4pcm049.o
-
obj-$(CONFIG_MACH_OMAP3517EVM) += board-am3517evm.o
obj-$(CONFIG_MACH_CRANEBOARD) += board-am3517crane.o
--
1.7.11.7
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] omap2+: Remove useless Makefile line
2013-04-05 10:16 Paul Bolle
@ 2013-04-08 21:46 ` Tony Lindgren
0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2013-04-08 21:46 UTC (permalink / raw)
To: linux-arm-kernel
* Paul Bolle <pebolle@tiscali.nl> [130405 03:21]:
> Merge commit 952414505f55afe5cd6dc004765076aa22b3ed7e ("Merge branch
> 'next/cleanup' of git://git.linaro.org/people/arnd/arm-soc") added
> references to CONFIG_MACH_PCM049 and board-omap4pcm049.o to this
> Makefile. But there's no Kconfig symbol MACH_PCM049 and there's no file
> board-omap4pcm049.c. This line can safely be removed.
>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
> ---
> Note that MACH_PCM049 was removed from mach-types in v3.5.
>
> arch/arm/mach-omap2/Makefile | 2 --
> 1 file changed, 2 deletions(-)
Thanks applying into omap-for-v3.10/board.
Tony
> diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
> index 3d0697c..62bb352 100644
> --- a/arch/arm/mach-omap2/Makefile
> +++ b/arch/arm/mach-omap2/Makefile
> @@ -254,8 +254,6 @@ obj-$(CONFIG_MACH_TOUCHBOOK) += board-omap3touchbook.o
> obj-$(CONFIG_MACH_OMAP_4430SDP) += board-4430sdp.o
> obj-$(CONFIG_MACH_OMAP4_PANDA) += board-omap4panda.o
>
> -obj-$(CONFIG_MACH_PCM049) += board-omap4pcm049.o
> -
> obj-$(CONFIG_MACH_OMAP3517EVM) += board-am3517evm.o
>
> obj-$(CONFIG_MACH_CRANEBOARD) += board-am3517crane.o
> --
> 1.7.11.7
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] omap2+: Remove useless Makefile line
2013-04-05 10:12 [PATCH] omap2+: Remove useless Makefile line Paul Bolle
@ 2013-04-08 22:17 ` Tony Lindgren
0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2013-04-08 22:17 UTC (permalink / raw)
To: linux-arm-kernel
* Paul Bolle <pebolle@tiscali.nl> [130405 03:17]:
> Commit f41caddbe73f52a42f529d668ce47b4d693fd2c0 ("omap2+: Use Kconfig
> symbol in Makefile instead of obj-y") reorganized this Makefile. But,
> for some reason, it also added references to CONFIG_MACH_ENCORE and
> board-omap3encore.o. But there's no Kconfig symbol MACH_ENCORE and
> there's no file board-omap3encore.c. This line can safely be removed.
Thanks applying into omap-for-v3.10/board.
Tony
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
> ---
> arch/arm/mach-omap2/Makefile | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
> index b068b7f..3d0697c 100644
> --- a/arch/arm/mach-omap2/Makefile
> +++ b/arch/arm/mach-omap2/Makefile
> @@ -229,7 +229,6 @@ obj-$(CONFIG_MACH_DEVKIT8000) += board-devkit8000.o
> obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o
> obj-$(CONFIG_MACH_OMAP3530_LV_SOM) += board-omap3logic.o
> obj-$(CONFIG_MACH_OMAP3_TORPEDO) += board-omap3logic.o
> -obj-$(CONFIG_MACH_ENCORE) += board-omap3encore.o
> obj-$(CONFIG_MACH_OVERO) += board-overo.o
> obj-$(CONFIG_MACH_OMAP3EVM) += board-omap3evm.o
> obj-$(CONFIG_MACH_OMAP3_PANDORA) += board-omap3pandora.o
> --
> 1.7.11.7
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-08 22:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-05 10:12 [PATCH] omap2+: Remove useless Makefile line Paul Bolle
2013-04-08 22:17 ` Tony Lindgren
-- strict thread matches above, loose matches on Subject: below --
2013-04-05 10:16 Paul Bolle
2013-04-08 21:46 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).