Remove an unused variable in the HID loader CLI application. Update known issues list.

This commit is contained in:
Dean Camera 2012-04-19 19:55:16 +00:00
parent c48da94605
commit cfa399a533
2 changed files with 2 additions and 4 deletions

View file

@ -970,13 +970,9 @@ void parse_options(int argc, char **argv)
} else if (strncmp(arg, "-mmcu=", 6) == 0) {
arg += 6;
uint8_t valid_prefix = 0;
if (strncmp(arg, "at90usb", 7) == 0) {
valid_prefix = 1;
arg += 7;
} else if (strncmp(arg, "atmega", 6) == 0) {
valid_prefix = 1;
arg += 6;
} else {
die("Unknown MCU type\n");