Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76fe1ffc authored by John Rigby's avatar John Rigby Committed by Kumar Gala
Browse files

powerpc: Move mpc83xx_add_bridge to fsl_pci.c



This allows other platforms with the same pci block like MPC5121 to use it.

Signed-off-by: default avatarJohn Rigby <jrigby@freescale.com>
Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent b500563b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ menuconfig PPC_83xx
	depends on 6xx && PPC_MULTIPLATFORM
	select PPC_UDBG_16550
	select PPC_PCI_CHOICE
	select PPC_INDIRECT_PCI
	select FSL_PCI if PCI
	select FSL_SOC
	select IPIC

+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
# Makefile for the PowerPC 83xx linux kernel.
#
obj-y				:= misc.o usb.o
obj-$(CONFIG_PCI)		+= pci.o
obj-$(CONFIG_SUSPEND)		+= suspend.o suspend-asm.o
obj-$(CONFIG_MPC831x_RDB)	+= mpc831x_rdb.o
obj-$(CONFIG_MPC832x_RDB)	+= mpc832x_rdb.o
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
#include <asm/time.h>
#include <asm/ipic.h>
#include <asm/udbg.h>
#include <sysdev/fsl_pci.h>

#include "mpc83xx.h"

+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@
#include <asm/prom.h>
#include <asm/udbg.h>
#include <sysdev/fsl_soc.h>
#include <sysdev/fsl_pci.h>
#include <asm/qe.h>
#include <asm/qe_ic.h>

+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@
#include <asm/qe.h>
#include <asm/qe_ic.h>
#include <sysdev/fsl_soc.h>
#include <sysdev/fsl_pci.h>

#include "mpc83xx.h"

Loading