88564dda0e
The support for PB1100, PB1500, and PB1550 got merged into the code for DB1000 and DB1550 code in v3.7. When that was done the three related Kconfig symbols were dropped. But not all related Kconfig macros were removed. Do so now. Note that the PB1100 code in the Au1100 LCD driver is removed entirely and not converted to use its current Kconfig macro. That is done because the macros it uses (PB1100_G_CONTROL, PB1100_G_CONTROL_BL, and PB1100_G_CONTROL_VDD) are never defined. Actually only one of these was ever defined (PB1100_G_CONTROL) but that define was removed in v2.6.34. So, as far as I can tell, this code could have never compiled. Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Patchwork: http://patchwork.linux-mips.org/patch/5040/ Acked-by: John Crispin <blogic@openwrt.org>
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
#
|
|
# Core Alchemy code
|
|
#
|
|
platform-$(CONFIG_MIPS_ALCHEMY) += alchemy/common/
|
|
|
|
|
|
#
|
|
# AMD Alchemy Db1000/Db1500/Pb1500/Db1100/Pb1100 eval boards
|
|
#
|
|
platform-$(CONFIG_MIPS_DB1000) += alchemy/devboards/
|
|
cflags-$(CONFIG_MIPS_DB1000) += -I$(srctree)/arch/mips/include/asm/mach-db1x00
|
|
load-$(CONFIG_MIPS_DB1000) += 0xffffffff80100000
|
|
|
|
#
|
|
# AMD Alchemy Db1200/Pb1200/Db1550/Pb1550/Db1300 eval boards
|
|
#
|
|
platform-$(CONFIG_MIPS_DB1235) += alchemy/devboards/
|
|
cflags-$(CONFIG_MIPS_DB1235) += -I$(srctree)/arch/mips/include/asm/mach-db1x00
|
|
load-$(CONFIG_MIPS_DB1235) += 0xffffffff80100000
|
|
|
|
#
|
|
# 4G-Systems MTX-1 "MeshCube" wireless router
|
|
#
|
|
platform-$(CONFIG_MIPS_MTX1) += alchemy/
|
|
load-$(CONFIG_MIPS_MTX1) += 0xffffffff80100000
|
|
|
|
#
|
|
# MyCable eval board
|
|
#
|
|
platform-$(CONFIG_MIPS_XXS1500) += alchemy/
|
|
load-$(CONFIG_MIPS_XXS1500) += 0xffffffff80100000
|
|
|
|
#
|
|
# Trapeze ITS GRP board
|
|
#
|
|
platform-$(CONFIG_MIPS_GPR) += alchemy/
|
|
load-$(CONFIG_MIPS_GPR) += 0xffffffff80100000
|
|
|
|
# boards can specify their own <gpio.h> in one of their include dirs.
|
|
# If they do, placing this line here at the end will make sure the
|
|
# compiler picks the board one. If they don't, it will make sure
|
|
# the alchemy generic gpio header is picked up.
|
|
|
|
cflags-$(CONFIG_MIPS_ALCHEMY) += -I$(srctree)/arch/mips/include/asm/mach-au1x00
|