Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1706421 > unrolled thread

[PATCH 01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile

Started byChristophe Leroy <christophe.leroy@c-s.fr>
First post2017-08-08 14:00 +0200
Last post2017-08-11 14:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile Christophe Leroy <christophe.leroy@c-s.fr> - 2017-08-08 14:00 +0200
    Re: [01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile Michael Ellerman <patch-notifications@ellerman.id.au> - 2017-08-11 14:30 +0200

#1706421 — [PATCH 01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile

FromChristophe Leroy <christophe.leroy@c-s.fr>
Date2017-08-08 14:00 +0200
Subject[PATCH 01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile
Message-ID<ucbkZ-7TS-15@gated-at.bofh.it>
The entire 8xx directory is omitted if CONFIG_8xx is not enabled, so
within the 8xx/Makefile CONFIG_8xx is always y. So convert
obj-$(CONFIG_8xx) to the more obvious obj-y.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
---
 This serie applies on top of Michael's serie begining with '[1/9] powerpc/47x:
  Guard 47x cputable entries with CONFIG_PPC_47x' added to bundle mce'

 arch/powerpc/platforms/8xx/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/platforms/8xx/Makefile b/arch/powerpc/platforms/8xx/Makefile
index 76a81c3350a8..161f367ebf1e 100644
--- a/arch/powerpc/platforms/8xx/Makefile
+++ b/arch/powerpc/platforms/8xx/Makefile
@@ -1,7 +1,7 @@
 #
 # Makefile for the PowerPC 8xx linux kernel.
 #
-obj-$(CONFIG_PPC_8xx)	  += m8xx_setup.o
+obj-y			+= m8xx_setup.o
 obj-$(CONFIG_MPC885ADS)   += mpc885ads_setup.o
 obj-$(CONFIG_MPC86XADS)   += mpc86xads_setup.o
 obj-$(CONFIG_PPC_EP88XC)  += ep88xc.o
-- 
2.13.3

[toc] | [next] | [standalone]


#1709529 — Re: [01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile

FromMichael Ellerman <patch-notifications@ellerman.id.au>
Date2017-08-11 14:30 +0200
SubjectRe: [01/12] powerpc/8xx: Simplify CONFIG_8xx checks in Makefile
Message-ID<udheF-3t8-5@gated-at.bofh.it>
In reply to#1706421
On Tue, 2017-08-08 at 11:58:40 UTC, Christophe Leroy wrote:
> The entire 8xx directory is omitted if CONFIG_8xx is not enabled, so
> within the 8xx/Makefile CONFIG_8xx is always y. So convert
> obj-$(CONFIG_8xx) to the more obvious obj-y.
> 
> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>

Series applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/0e23e7b32bfdaaa8892d8383114f84

cheers

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web