mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
fb9ec33878
Use the common GSC driver. This allows us to do some additional cleanup: - rename gsc{.c,.h} to eeprom{.c.h} for clarity - collapse eeprom_get_dev - remove unnecessary header files and alphabatize includes Signed-off-by: Tim Harvey <tharvey@gateworks.com>
17 lines
312 B
Makefile
17 lines
312 B
Makefile
#
|
|
# Copyright 2021 Gateworks Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += venice.o eeprom.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
ifdef CONFIG_IMX8MM
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += lpddr4_timing_imx8mm.o
|
|
endif
|
|
ifdef CONFIG_IMX8MN
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += lpddr4_timing_imx8mn.o
|
|
endif
|
|
endif
|