From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from az33egw02.freescale.net (az33egw02.freescale.net [192.88.158.103]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "az33egw02.freescale.net", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id EB560DDF02 for ; Thu, 17 Jan 2008 08:37:49 +1100 (EST) Received: from az33smr01.freescale.net (az33smr01.freescale.net [10.64.34.199]) by az33egw02.freescale.net (8.12.11/az33egw02) with ESMTP id m0GLbTWH012277 for ; Wed, 16 Jan 2008 14:37:29 -0700 (MST) Received: from localhost.localdomain (mvp-10-214-72-34.am.freescale.net [10.214.72.34]) by az33smr01.freescale.net (8.13.1/8.13.0) with ESMTP id m0GLbSnn018969 for ; Wed, 16 Jan 2008 15:37:29 -0600 (CST) From: John Rigby To: linuxppc-dev@ozlabs.org Subject: [Add mpc5121 support PATCH v2 1/8] Add IPIC config option Date: Wed, 16 Jan 2008 14:37:20 -0700 Message-Id: <1200519447-25555-1-git-send-email-jrigby@freescale.com> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , IPIC is not just for 83xx anymore so make it a separate config option. Signed-off-by: John Rigby --- arch/powerpc/platforms/Kconfig | 5 +++++ arch/powerpc/sysdev/Makefile | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig index ea22cad..ad9b1c0 100644 --- a/arch/powerpc/platforms/Kconfig +++ b/arch/powerpc/platforms/Kconfig @@ -22,6 +22,7 @@ config PPC_83xx depends on 6xx select FSL_SOC select 83xx + select IPIC select WANT_DEVICE_TREE config PPC_86xx @@ -80,6 +81,10 @@ config XICS bool default y +config IPIC + bool + default n + config MPIC bool default n diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index 9a20ef4..66fe39c 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile @@ -24,7 +24,7 @@ obj-$(CONFIG_AXON_RAM) += axonram.o ifeq ($(CONFIG_PPC_MERGE),y) obj-$(CONFIG_PPC_INDIRECT_PCI) += indirect_pci.o obj-$(CONFIG_PPC_I8259) += i8259.o -obj-$(CONFIG_PPC_83xx) += ipic.o +obj-$(CONFIG_IPIC) += ipic.o obj-$(CONFIG_4xx) += uic.o obj-$(CONFIG_XILINX_VIRTEX) += xilinx_intc.o ifeq ($(CONFIG_PCI),y) -- 1.5.3.5.726.g41a7a