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

Commit 91a548d5 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

MIPS: PNX833x: Migrate to new platform makefile style.

parent 9453e84d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ platforms += loongson
platforms += mipssim
platforms += mti-malta
platforms += pmc-sierra
platforms += pnx833x
platforms += powertv
platforms += rb532
platforms += sgi-ip22
+0 −8
Original line number Diff line number Diff line
@@ -191,14 +191,6 @@ endif
#
include $(srctree)/arch/mips/Kbuild.platforms

# NXP STB225
core-$(CONFIG_SOC_PNX833X)		+= arch/mips/pnx833x/common/
cflags-$(CONFIG_SOC_PNX833X)	+= -Iarch/mips/include/asm/mach-pnx833x
core-$(CONFIG_NXP_STB220)		+= arch/mips/pnx833x/stb22x/
load-$(CONFIG_NXP_STB220)		+= 0xffffffff80001000
core-$(CONFIG_NXP_STB225)		+= arch/mips/pnx833x/stb22x/
load-$(CONFIG_NXP_STB225)		+= 0xffffffff80001000

#
# Common NXP PNX8550
#
+3 −0
Original line number Diff line number Diff line
obj-$(CONFIG_SOC_PNX833X)	+= common/
obj-$(CONFIG_NXP_STB220)	+= stb22x/
obj-$(CONFIG_NXP_STB225)	+= stb22x/
+5 −0
Original line number Diff line number Diff line
# NXP STB225
platform-$(CONFIG_SOC_PNX833X)	+= pnx833x/
cflags-$(CONFIG_SOC_PNX833X)    += -Iarch/mips/include/asm/mach-pnx833x
load-$(CONFIG_NXP_STB220)	+= 0xffffffff80001000
load-$(CONFIG_NXP_STB225)	+= 0xffffffff80001000
+0 −2
Original line number Diff line number Diff line
obj-y := interrupts.o platform.o prom.o setup.o reset.o

EXTRA_CFLAGS += -Werror
Loading