integration/soc: rename usb_cdc to usb_acm.

As discussed on Discord recently.
This commit is contained in:
Florent Kermarrec 2020-04-30 21:45:53 +02:00
parent 0a1afbf66f
commit b82b3b7ecf
1 changed files with 2 additions and 2 deletions

View File

@ -958,8 +958,8 @@ class LiteXSoC(SoC):
tx_fifo_depth = fifo_depth,
rx_fifo_depth = fifo_depth))
# USB CDC (with ValentyUSB core)
elif name in ["usb_cdc"]:
# USB ACM (with ValentyUSB core)
elif name in ["usb_acm"]:
import valentyusb.usbcore.io as usbio
import valentyusb.usbcore.cpu.cdc_eptri as cdc_eptri
usb_pads = self.platform.request("usb")