From: weyoui Date: Tue, 3 Jul 2018 02:58:34 +0000 (+0900) Subject: bootloader: fix missing typedef on enum defintion X-Git-Tag: v3.2-beta1~442^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24e728669378db6723f71c1e5067fe452b080e4f;p=esp-idf bootloader: fix missing typedef on enum defintion (MINOR CHANGES) Closes https://github.com/espressif/esp-idf/pull/2140 --- diff --git a/components/bootloader_support/include/esp_image_format.h b/components/bootloader_support/include/esp_image_format.h index d2dcfd312c..6d332d810f 100644 --- a/components/bootloader_support/include/esp_image_format.h +++ b/components/bootloader_support/include/esp_image_format.h @@ -36,7 +36,7 @@ typedef enum { } esp_image_spi_mode_t; /* SPI flash clock frequency */ -enum { +typedef enum { ESP_IMAGE_SPI_SPEED_40M, ESP_IMAGE_SPI_SPEED_26M, ESP_IMAGE_SPI_SPEED_20M,