Commit 8a4e2779 authored by Thomas Bogendoerfer's avatar Thomas Bogendoerfer
Browse files

MIPS: Fix builds for VR41xx platforms



Changing inclusion of Platform files, broke VR41xx platforms. Add Makefile
to vr41xx directory and traverse subdirs from it.

Fixes: 26bff9eb ("MIPS: Only include the platformfile needed")
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent b6b6c318
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
#
obj-$(CONFIG_MACH_VR41XX)	+= common/
obj-$(CONFIG_CASIO_E55)		+= casio-e55/
obj-$(CONFIG_IBM_WORKPAD)	+= ibm-workpad/
+0 −3
Original line number Diff line number Diff line
#
# NEC VR4100 series based machines
#
platform-$(CONFIG_MACH_VR41XX)	+= vr41xx/common/
cflags-$(CONFIG_MACH_VR41XX)	+= -I$(srctree)/arch/mips/include/asm/mach-vr41xx

#
# CASIO CASSIPEIA E-55/65 (VR4111)
#
platform-$(CONFIG_CASIO_E55)	+= vr41xx/casio-e55/
load-$(CONFIG_CASIO_E55)	+= 0xffffffff80004000

#
# IBM WorkPad z50 (VR4121)
#
platform-$(CONFIG_IBM_WORKPAD)	+= vr41xx/ibm-workpad/
load-$(CONFIG_IBM_WORKPAD)	+= 0xffffffff80004000

#