forked from Minki/linux
memory: move jedec_ddr_data.c from lib/ to drivers/memory/
jedec_ddr_data.c exports 3 symbols, and all of them are only referenced from drivers/memory/{emif.c,of_memory.c} drivers/memory/ is a better location than lib/. I removed the Kconfig prompt "JEDEC DDR data" because it is only select'ed by TI_EMIF, and there is no other user. There is no good reason in making it a user-configurable CONFIG option. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
c9727db7cc
commit
7b43b8fdc9
@ -8,6 +8,14 @@ menuconfig MEMORY
|
|||||||
|
|
||||||
if MEMORY
|
if MEMORY
|
||||||
|
|
||||||
|
config DDR
|
||||||
|
bool
|
||||||
|
help
|
||||||
|
Data from JEDEC specs for DDR SDRAM memories,
|
||||||
|
particularly the AC timing parameters and addressing
|
||||||
|
information. This data is useful for drivers handling
|
||||||
|
DDR SDRAM controllers.
|
||||||
|
|
||||||
config ARM_PL172_MPMC
|
config ARM_PL172_MPMC
|
||||||
tristate "ARM PL172 MPMC driver"
|
tristate "ARM PL172 MPMC driver"
|
||||||
depends on ARM_AMBA && OF
|
depends on ARM_AMBA && OF
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
# Makefile for memory devices
|
# Makefile for memory devices
|
||||||
#
|
#
|
||||||
|
|
||||||
|
obj-$(CONFIG_DDR) += jedec_ddr_data.o
|
||||||
ifeq ($(CONFIG_DDR),y)
|
ifeq ($(CONFIG_DDR),y)
|
||||||
obj-$(CONFIG_OF) += of_memory.o
|
obj-$(CONFIG_OF) += of_memory.o
|
||||||
endif
|
endif
|
||||||
|
@ -531,14 +531,6 @@ config LRU_CACHE
|
|||||||
config CLZ_TAB
|
config CLZ_TAB
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config DDR
|
|
||||||
bool "JEDEC DDR data"
|
|
||||||
help
|
|
||||||
Data from JEDEC specs for DDR SDRAM memories,
|
|
||||||
particularly the AC timing parameters and addressing
|
|
||||||
information. This data is useful for drivers handling
|
|
||||||
DDR SDRAM controllers.
|
|
||||||
|
|
||||||
config IRQ_POLL
|
config IRQ_POLL
|
||||||
bool "IRQ polling library"
|
bool "IRQ polling library"
|
||||||
help
|
help
|
||||||
|
@ -206,8 +206,6 @@ obj-$(CONFIG_SIGNATURE) += digsig.o
|
|||||||
|
|
||||||
lib-$(CONFIG_CLZ_TAB) += clz_tab.o
|
lib-$(CONFIG_CLZ_TAB) += clz_tab.o
|
||||||
|
|
||||||
obj-$(CONFIG_DDR) += jedec_ddr_data.o
|
|
||||||
|
|
||||||
obj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o
|
obj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o
|
||||||
obj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o
|
obj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user