xiaoxiang781216 commented on code in PR #16842: URL: https://github.com/apache/nuttx/pull/16842#discussion_r2271963745
########## arch/arm/src/rp2040/rp2040_adc.c: ########## @@ -108,33 +108,33 @@ static int interrupt_handler(int irq, void *context, void *arg); -static void get_next_channel(void); -static void add_device(struct adc_dev_s *dev); -static void remove_device(struct adc_dev_s *dev); +static void adc_get_next_channel(void); +static void adc_add_device(struct adc_dev_s *dev); +static void adc_remove_device(struct adc_dev_s *dev); /* ADC methods */ -static int my_bind(struct adc_dev_s *dev, +static int adc_bind(struct adc_dev_s *dev, const struct adc_callback_s *callback); Review Comment: ```suggestion const struct adc_callback_s *callback); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org