diff options
author | Alex Kiernan <alex.kiernan@gmail.com> | 2018-05-29 15:30:55 +0000 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-05-30 11:59:21 +0200 |
commit | 65c96757fe9ab3bd451674ac12271a5e3703153a (patch) | |
tree | f06284cd64132bd01764501436b9844493a1db40 /drivers/fastboot/Makefile | |
parent | 3845b9065fea9859bf2cd6413168e3cb4ba38f06 (diff) | |
download | u-boot-65c96757fe9ab3bd451674ac12271a5e3703153a.tar.gz |
usb: fastboot: Convert USB f_fastboot to shared fastboot
Convert USB fastboot code to use shared fastboot protocol.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/fastboot/Makefile')
-rw-r--r-- | drivers/fastboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/fastboot/Makefile b/drivers/fastboot/Makefile index 88310961814..a2421565e23 100644 --- a/drivers/fastboot/Makefile +++ b/drivers/fastboot/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0+ obj-y += fb_common.o -obj-$(CONFIG_UDP_FUNCTION_FASTBOOT) += fb_getvar.o -obj-$(CONFIG_UDP_FUNCTION_FASTBOOT) += fb_command.o +obj-y += fb_getvar.o +obj-y += fb_command.o obj-$(CONFIG_FASTBOOT_FLASH_MMC) += fb_mmc.o obj-$(CONFIG_FASTBOOT_FLASH_NAND) += fb_nand.o |