Skip to content

Commit b75d44c

Browse files
authored
Merge pull request hathach#1664 from mingpepe/master
Fix typo for log in dcd_rp2040.c
2 parents 111515a + 988eeb5 commit b75d44c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/portable/raspberrypi/rp2040/dcd_rp2040.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static void _hw_endpoint_alloc(struct hw_endpoint *ep, uint8_t transfer_type)
8888
uint dpram_offset = hw_data_offset(ep->hw_data_buf);
8989
hard_assert(hw_data_offset(next_buffer_ptr) <= USB_DPRAM_MAX);
9090

91-
pico_info(" Alloced %d bytes at offset 0x%x (0x%p)\r\n", size, dpram_offset, ep->hw_data_buf);
91+
pico_info(" Allocated %d bytes at offset 0x%x (0x%p)\r\n", size, dpram_offset, ep->hw_data_buf);
9292

9393
// Fill in endpoint control register with buffer offset
9494
uint32_t const reg = EP_CTRL_ENABLE_BITS | ((uint)transfer_type << EP_CTRL_BUFFER_TYPE_LSB) | dpram_offset;

0 commit comments

Comments
 (0)