diff --git a/applications/nrf_desktop/src/modules/usb_state.c b/applications/nrf_desktop/src/modules/usb_state.c index 0118597a2a4f..f9116b91d37a 100644 --- a/applications/nrf_desktop/src/modules/usb_state.c +++ b/applications/nrf_desktop/src/modules/usb_state.c @@ -1424,8 +1424,8 @@ static struct usbd_context *usb_init_next_usbd_init(void) static const uint8_t attributes = IS_ENABLED(CONFIG_DESKTOP_USB_REMOTE_WAKEUP) ? (USB_SCD_REMOTE_WAKEUP) : (0); - USBD_CONFIGURATION_DEFINE(fs_config, attributes, max_power); - USBD_CONFIGURATION_DEFINE(hs_config, attributes, max_power); + USBD_CONFIGURATION_DEFINE(fs_config, attributes, max_power, NULL); + USBD_CONFIGURATION_DEFINE(hs_config, attributes, max_power, NULL); if (!usbd_can_detect_vbus(&usbd)) { LOG_ERR("USBD controller cannot detect VBUS state change"); diff --git a/west.yml b/west.yml index 1ba26136665b..47b2e8e987c2 100644 --- a/west.yml +++ b/west.yml @@ -72,7 +72,7 @@ manifest: # https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html - name: zephyr repo-path: sdk-zephyr - revision: 5bb7bb0af17cbdbd13c06ed5ea1268ec9b9358fc + revision: pull/2038/head import: # In addition to the zephyr repository itself, NCS also # imports the contents of zephyr/west.yml at the above