diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-12-19 12:09:28 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-12-30 21:28:32 -0500 |
commit | b51b06844213b3aede71fa3de2100e82ec7d35dc (patch) | |
tree | 5f9a601989524c24435d38a59d8f27c24fc8aff4 /src/avr/usbserial.c | |
parent | c620f4836e0035ed36d13f2e44f9097ec7ae700d (diff) | |
download | kutter-b51b06844213b3aede71fa3de2100e82ec7d35dc.tar.gz kutter-b51b06844213b3aede71fa3de2100e82ec7d35dc.tar.xz kutter-b51b06844213b3aede71fa3de2100e82ec7d35dc.zip |
avr: No need to define bootloader_request()
Since avr does not define HAVE_BOOTLOADER_REQUEST it is not necessary
to define the function.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/avr/usbserial.c')
-rw-r--r-- | src/avr/usbserial.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/avr/usbserial.c b/src/avr/usbserial.c index ab61fde2..e95ab040 100644 --- a/src/avr/usbserial.c +++ b/src/avr/usbserial.c @@ -7,7 +7,6 @@ #include <avr/interrupt.h> // USB_COM_vect #include <string.h> // NULL #include "autoconf.h" // CONFIG_MACH_at90usb1286 -#include "board/misc.h" // bootloader_request #include "board/usb_cdc.h" // usb_notify_ep0 #include "board/usb_cdc_ep.h" // USB_CDC_EP_BULK_IN #include "pgm.h" // READP @@ -179,11 +178,6 @@ usb_set_configure(void) UEIENX = 1<<TXINE; } -void -bootloader_request(void) -{ -} - #if CONFIG_MACH_at90usb1286 #define UHWCON_Init ((1<<UIMOD) | (1<<UVREGE)) #define PLLCSR_Init ((1<<PLLP2) | (1<<PLLP0) | (1<<PLLE)) |