diff options
Diffstat (limited to 'ft2232_spi.c')
-rw-r--r-- | ft2232_spi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ft2232_spi.c b/ft2232_spi.c index 2971c2eb..5b45d7ed 100644 --- a/ft2232_spi.c +++ b/ft2232_spi.c @@ -14,6 +14,7 @@ * GNU General Public License for more details. */ +#include <stdbool.h> #include <stdio.h> #include <strings.h> #include <string.h> @@ -317,7 +318,7 @@ static int ft2232_spi_init(const struct programmer_cfg *cfg) * but the non-H chips can only run at 12 MHz. We disable the divide-by-5 * prescaler on 'H' chips so they run at 60MHz. */ - uint8_t clock_5x = 1; + bool clock_5x = true; /* In addition to the prescaler mentioned above there is also another * configurable one on all versions of the chips. Its divisor div can be * set by a 16 bit value x according to the following formula: @@ -618,7 +619,7 @@ format_error: if (ftdic.type != TYPE_2232H && ftdic.type != TYPE_4232H && ftdic.type != TYPE_232H) { msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic.type); - clock_5x = 0; + clock_5x = false; } if (ftdi_usb_reset(&ftdic) < 0) { |