From bb4059a53bc13615f12b5e21252872bf7e02dce4 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Fri, 16 Feb 2018 16:41:18 +0100 Subject: dfu: Rename _FUNCTION_DFU to DFU_OVER_ Do the following to make the symbol names less confusing. sed -i "s/\([TU][^_]\+\)_FUNCTION_DFU/DFU_OVER_\1/g" \ `git grep _FUNCTION_DFU | cut -d ":" -f 1 | sort -u` Signed-off-by: Marek Vasut Cc: Lukasz Majewski --- drivers/dfu/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'drivers/dfu') diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index b077444..51ab484 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -2,21 +2,21 @@ menu "DFU support" config DFU bool - imply USB_FUNCTION_DFU if USB_GADGET + imply DFU_OVER_USB if USB_GADGET -config USB_FUNCTION_DFU +config DFU_OVER_USB bool select HASH depends on USB_GADGET -config TFTP_FUNCTION_DFU +config DFU_OVER_TFTP bool depends on NET if DFU config DFU_TFTP bool "DFU via TFTP" - select TFTP_FUNCTION_DFU + select DFU_OVER_TFTP help This option allows performing update of DFU-managed medium with data sent via TFTP boot. -- cgit v1.1