Remove buffer reclaim logs

This commit is contained in:
Valentin Milea 2021-12-07 15:35:30 +02:00
parent 48e1f6d899
commit 36e69b86bf
1 changed files with 1 additions and 2 deletions

View File

@ -115,7 +115,6 @@ static void _hw_endpoint_close(struct hw_endpoint *ep)
}
if (reclaim_buffers)
{
pico_info(" reclaim buffer space\n");
next_buffer_ptr = &usb_dpram->epx_data[0];
}
}
@ -239,7 +238,7 @@ static void reset_non_control_endpoints(void)
// clear non-control hw endpoints
tu_memclr(hw_endpoints[1], sizeof(hw_endpoints) - 2*sizeof(hw_endpoint_t));
pico_info(" reclaim buffer space\n");
// reclaim buffer space
next_buffer_ptr = &usb_dpram->epx_data[0];
}