mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
Merge tag 'usb-6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB / Thunderbolt driver updates from Greg KH: "Here is the big set of USB and Thunderbolt driver updates for 6.5-rc1. Included in here are: - Lots of USB4/Thunderbolt additions and updates for new hardware types and fixes as people are starting to get access to the hardware in the wild - new gadget controller driver, cdns2, added - new typec drivers added - xhci driver updates - typec driver updates - usbip driver fixes - usb-serial driver updates and fixes - lots of smaller USB driver updates All of these have been in linux-next for a while with no reported problems" * tag 'usb-6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (265 commits) usb: host: xhci-plat: Set XHCI_STATE_REMOVING before resuming XHCI HC usb: host: xhci: Do not re-initialize the XHCI HC if being removed usb: typec: nb7vpq904m: fix CONFIG_DRM dependency usbip: usbip_host: Replace strlcpy with strscpy usb: dwc3: gadget: Propagate core init errors to UDC during pullup USB: serial: option: add LARA-R6 01B PIDs usb: ulpi: Make container_of() no-op in to_ulpi_dev() usb: gadget: legacy: fix error return code in gfs_bind usb: typec: fsa4480: add support for Audio Accessory Mode usb: typec: fsa4480: rework mux & switch setup to handle more states usb: typec: ucsi: call typec_set_mode on non-altmode partner change USB: gadget: f_hid: make hidg_class a static const structure USB: gadget: f_printer: make usb_gadget_class a static const structure USB: mon: make mon_bin_class a static const structure USB: gadget: udc: core: make udc_class a static const structure USB: roles: make role_class a static const structure dt-bindings: usb: dwc3: Add interrupt-names property support for wakeup interrupt dt-bindings: usb: Add StarFive JH7110 USB controller dt-bindings: usb: dwc3: Add IPQ9574 compatible usb: cdns2: Fix spelling mistake in a trace message "Wakupe" -> "Wakeup" ...
This commit is contained in:
@@ -94,11 +94,11 @@ AC_SUBST([USBIDS_DIR])
|
||||
AC_MSG_CHECKING([whether to use fortify])
|
||||
AC_ARG_WITH([fortify],
|
||||
[AS_HELP_STRING([--with-fortify],
|
||||
[use _FORTIFY_SROUCE option when compiling)])],
|
||||
[use _FORTIFY_SOURCE=2 option when compiling)])],
|
||||
dnl [ACTION-IF-GIVEN]
|
||||
[if test "$withval" = "yes"; then
|
||||
AC_MSG_RESULT([yes])
|
||||
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE -O"
|
||||
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -O"
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
|
||||
|
@@ -86,7 +86,7 @@ static int import_device(int sockfd, struct usbip_usb_device *udev)
|
||||
|
||||
rc = usbip_vhci_driver_open();
|
||||
if (rc < 0) {
|
||||
err("open vhci_driver");
|
||||
err("open vhci_driver (is vhci_hcd loaded?)");
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
|
@@ -50,7 +50,7 @@ static int detach_port(char *port)
|
||||
|
||||
ret = usbip_vhci_driver_open();
|
||||
if (ret < 0) {
|
||||
err("open vhci_driver");
|
||||
err("open vhci_driver (is vhci_hcd loaded?)");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@@ -18,7 +18,7 @@ static int list_imported_devices(void)
|
||||
|
||||
ret = usbip_vhci_driver_open();
|
||||
if (ret < 0) {
|
||||
err("open vhci_driver");
|
||||
err("open vhci_driver (is vhci_hcd loaded?)");
|
||||
goto err_names_free;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user