diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-07-25 13:17:23 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-07-29 11:40:54 -0400 |
commit | 18ff84aa04c3dbf39166d4bad210e91a9381960f (patch) | |
tree | 543ed2f14b4176a4ce7e8507cc3a2371dcc64b65 /src/lpc176x/usbserial.c | |
parent | 48b60a8021bd02d998fd3d6ea9e55645e3dc75e4 (diff) | |
download | kutter-18ff84aa04c3dbf39166d4bad210e91a9381960f.tar.gz kutter-18ff84aa04c3dbf39166d4bad210e91a9381960f.tar.xz kutter-18ff84aa04c3dbf39166d4bad210e91a9381960f.zip |
usb_cdc: Rename usb_request_bootloader() to bootloader_request()
Rename this board API function to a more generic name. This is in
preparation for calling the function from the canbus code.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/lpc176x/usbserial.c')
-rw-r--r-- | src/lpc176x/usbserial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpc176x/usbserial.c b/src/lpc176x/usbserial.c index bbb90438..af7d66b5 100644 --- a/src/lpc176x/usbserial.c +++ b/src/lpc176x/usbserial.c @@ -247,7 +247,7 @@ usb_set_configure(void) } void -usb_request_bootloader(void) +bootloader_request(void) { if (!CONFIG_SMOOTHIEWARE_BOOTLOADER) return; |