diff mbox series

[161/171] Correct SPL use of USB_FUNCTION_FASTBOOT

Message ID 20230130151612.212732-162-sjg@chromium.org
State Changes Requested
Delegated to: Tom Rini
Headers show
Series None | expand

Commit Message

Simon Glass Jan. 30, 2023, 3:16 p.m. UTC
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_USB_FUNCTION_FASTBOOT defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 cmd/fastboot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mattijs Korpershoek Jan. 31, 2023, 3 p.m. UTC | #1
On Mon, Jan 30, 2023 at 08:16, Simon Glass <sjg@chromium.org> wrote:

> This converts 1 usage of this option to the non-SPL form, since there is
> no SPL_USB_FUNCTION_FASTBOOT defined in Kconfig
>
> Signed-off-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>
>  cmd/fastboot.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/cmd/fastboot.c b/cmd/fastboot.c
> index 17c53bbe277..97dc02ce748 100644
> --- a/cmd/fastboot.c
> +++ b/cmd/fastboot.c
> @@ -44,7 +44,7 @@ static int do_fastboot_usb(int argc, char *const argv[],
>  	char *endp;
>  	int ret;
>  
> -	if (!CONFIG_IS_ENABLED(USB_FUNCTION_FASTBOOT)) {
> +	if (!IS_ENABLED(CONFIG_USB_FUNCTION_FASTBOOT)) {
>  		pr_err("Fastboot USB not enabled\n");
>  		return CMD_RET_FAILURE;
>  	}
> -- 
> 2.39.1.456.gfc5497dd1b-goog
diff mbox series

Patch

diff --git a/cmd/fastboot.c b/cmd/fastboot.c
index 17c53bbe277..97dc02ce748 100644
--- a/cmd/fastboot.c
+++ b/cmd/fastboot.c
@@ -44,7 +44,7 @@  static int do_fastboot_usb(int argc, char *const argv[],
 	char *endp;
 	int ret;
 
-	if (!CONFIG_IS_ENABLED(USB_FUNCTION_FASTBOOT)) {
+	if (!IS_ENABLED(CONFIG_USB_FUNCTION_FASTBOOT)) {
 		pr_err("Fastboot USB not enabled\n");
 		return CMD_RET_FAILURE;
 	}