zephyr: Use CONFIG_USB_DEVICE_STACK for conditional USB device support.

CONFIG_USB was removed in Zephyr v2.7.0 after some Kconfig rework that
made it sufficient to use CONFIG_USB_DEVICE_STACK only.

Signed-off-by: Maureen Helm <maureen.helm@intel.com>
pull/8141/head
Maureen Helm 2022-01-04 16:58:42 -06:00 zatwierdzone przez Damien George
rodzic 1e5df0982a
commit 0cf03bd3b1
2 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -1,7 +1,6 @@
# Required for zephyr.DiskAccess block devices
CONFIG_DISK_ACCESS=y
CONFIG_USB=y
CONFIG_USB_DEVICE_STACK=y
CONFIG_USB_DEVICE_PRODUCT="Zephyr MicroPython"
CONFIG_USB_MASS_STORAGE=y

Wyświetl plik

@ -34,7 +34,7 @@
#include <net/net_context.h>
#endif
#ifdef CONFIG_USB
#ifdef CONFIG_USB_DEVICE_STACK
#include <usb/usb_device.h>
#endif
@ -140,7 +140,7 @@ soft_reset:
#endif
mp_init();
#ifdef CONFIG_USB
#ifdef CONFIG_USB_DEVICE_STACK
usb_enable(NULL);
#endif