forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed upstreamed: pending-5.15/101-Use-stddefs.h-instead-of-compiler.h.patch[1] ipq806x/patches-5.15/122-01-clk-qcom-clk-krait-fix-wrong-div2-functions.patch[2] bcm27xx/patches-5.15/950-0198-drm-fourcc-Add-packed-10bit-YUV-4-2-0-format.patch[3] Manually rebased: ramips/patches-5.15/100-PCI-mt7621-Add-MediaTek-MT7621-PCIe-host-controller-.patch[4] Added patch/backported: ramips/patches-5.15/107-PCI-mt7621-Add-sentinel-to-quirks-table.patch[5] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.86&id=c160505c9b574b346031fdf2c649d19e7939ca11 2. Cannot find in the stable tree but it is here: torvalds/linux@a051e10 3. gregkh/linux@ec1727f 4. Quilt gave this output when I applied the patch to rebase it: % quilt push -f Applying patch platform/100-PCI-mt7621-Add-MediaTek-MT7621-PCIe-host-controller-.patch patching file arch/mips/ralink/Kconfig patching file drivers/pci/controller/Kconfig patching file drivers/pci/controller/Makefile patching file drivers/staging/Kconfig patching file drivers/staging/Makefile patching file drivers/staging/mt7621-pci/Kconfig patching file drivers/staging/mt7621-pci/Makefile patching file drivers/staging/mt7621-pci/TODO patching file drivers/staging/mt7621-pci/mediatek,mt7621-pci.txt patching file drivers/staging/mt7621-pci/pci-mt7621.c Hunk #1 FAILED at 1. Not deleting file drivers/staging/mt7621-pci/pci-mt7621.c as content differs from patch 1 out of 1 hunk FAILED -- saving rejects to file drivers/staging/mt7621-pci/pci-mt7621.c.rej patching file drivers/pci/controller/pcie-mt7621.c Applied patch platform/100-PCI-mt7621-Add-MediaTek-MT7621-PCIe-host-controller-.patch (forced; needs refresh) Upon inspecting drivers/staging/mt7621-pci/pci-mt7621.c.rej, it seems that the original patch wants to delete drivers/staging/mt7621-pci/pci-mt7621.c but upstream's version was not an exact match. I opted to delete that file and need some feedback. Was that the correct course of action? 5. Suggestion by hauke: torvalds/linux@1909893 "This patch is in upstream kernel, but it was backported to the old staging driver in kernel 5.15." Build system: x86_64 Build-tested: bcm2711/RPi4B, filogic/xiaomi_redmi-router-ax6000-ubootmod Run-tested: bcm2711/RPi4B, filogic/xiaomi_redmi-router-ax6000-ubootmod Signed-off-by: John Audia <[email protected]>
- Loading branch information
Showing
55 changed files
with
160 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-5.15 = .85 | ||
LINUX_KERNEL_HASH-5.15.85 = 2c0bae29fac98e0a9408914a4551b2971365ac0000351cb255d6bd9aa0849808 | ||
LINUX_VERSION-5.15 = .86 | ||
LINUX_KERNEL_HASH-5.15.86 = 80fcd9efa443502de9e2750f6dfb59e8de43a5d87a6d2be09dca748d79b5f2ee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,15 +10,15 @@ Signed-off-by: Abhimanyu Vishwakarma <[email protected]> | |
|
||
--- a/drivers/mtd/spi-nor/core.c | ||
+++ b/drivers/mtd/spi-nor/core.c | ||
@@ -3095,6 +3095,7 @@ int spi_nor_scan(struct spi_nor *nor, co | ||
@@ -3096,6 +3096,7 @@ int spi_nor_scan(struct spi_nor *nor, co | ||
struct device *dev = nor->dev; | ||
struct mtd_info *mtd = &nor->mtd; | ||
struct device_node *np = spi_nor_get_flash_node(nor); | ||
+ const char __maybe_unused *of_mtd_name = NULL; | ||
int ret; | ||
int i; | ||
|
||
@@ -3149,7 +3150,12 @@ int spi_nor_scan(struct spi_nor *nor, co | ||
@@ -3150,7 +3151,12 @@ int spi_nor_scan(struct spi_nor *nor, co | ||
if (ret) | ||
return ret; | ||
|
||
|
@@ -34,7 +34,7 @@ Signed-off-by: Abhimanyu Vishwakarma <[email protected]> | |
mtd->type = MTD_NORFLASH; | ||
--- a/drivers/mtd/mtdcore.c | ||
+++ b/drivers/mtd/mtdcore.c | ||
@@ -845,6 +845,17 @@ out_error: | ||
@@ -847,6 +847,17 @@ out_error: | ||
*/ | ||
static void mtd_set_dev_defaults(struct mtd_info *mtd) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ Submitted-by: Christopher Hill <[email protected]> | |
|
||
--- a/drivers/mfd/Kconfig | ||
+++ b/drivers/mfd/Kconfig | ||
@@ -2174,6 +2174,14 @@ config RAVE_SP_CORE | ||
@@ -2175,6 +2175,14 @@ config RAVE_SP_CORE | ||
Select this to get support for the Supervisory Processor | ||
device found on several devices in RAVE line of hardware. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
--- a/drivers/spi/spidev.c | ||
+++ b/drivers/spi/spidev.c | ||
@@ -747,7 +747,7 @@ static int spidev_probe(struct spi_devic | ||
@@ -758,7 +758,7 @@ static int spidev_probe(struct spi_devic | ||
* compatible string, it is a Linux implementation thing | ||
* rather than a description of the hardware. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
--- a/drivers/tty/serial/amba-pl011.c | ||
+++ b/drivers/tty/serial/amba-pl011.c | ||
@@ -1727,6 +1727,23 @@ static void pl011_put_poll_char(struct u | ||
@@ -1730,6 +1730,23 @@ static void pl011_put_poll_char(struct u | ||
|
||
#endif /* CONFIG_CONSOLE_POLL */ | ||
|
||
|
@@ -50,7 +50,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
static int pl011_hwinit(struct uart_port *port) | ||
{ | ||
struct uart_amba_port *uap = | ||
@@ -1743,7 +1760,7 @@ static int pl011_hwinit(struct uart_port | ||
@@ -1746,7 +1763,7 @@ static int pl011_hwinit(struct uart_port | ||
if (retval) | ||
return retval; | ||
|
||
|
@@ -59,7 +59,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
/* Clear pending error and receive interrupts */ | ||
pl011_write(UART011_OEIS | UART011_BEIS | UART011_PEIS | | ||
@@ -2440,7 +2457,7 @@ static int pl011_console_setup(struct co | ||
@@ -2452,7 +2469,7 @@ static int pl011_console_setup(struct co | ||
plat->init(); | ||
} | ||
|
||
|
@@ -68,15 +68,15 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
if (uap->vendor->fixed_options) { | ||
baud = uap->fixed_baud; | ||
@@ -2657,6 +2674,7 @@ static struct uart_driver amba_reg = { | ||
@@ -2669,6 +2686,7 @@ static struct uart_driver amba_reg = { | ||
.cons = AMBA_CONSOLE, | ||
}; | ||
|
||
+#if 0 | ||
static int pl011_probe_dt_alias(int index, struct device *dev) | ||
{ | ||
struct device_node *np; | ||
@@ -2688,6 +2706,7 @@ static int pl011_probe_dt_alias(int inde | ||
@@ -2700,6 +2718,7 @@ static int pl011_probe_dt_alias(int inde | ||
|
||
return ret; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
--- a/drivers/tty/serial/amba-pl011.c | ||
+++ b/drivers/tty/serial/amba-pl011.c | ||
@@ -1432,6 +1432,7 @@ static bool pl011_tx_char(struct uart_am | ||
@@ -1435,6 +1435,7 @@ static bool pl011_tx_char(struct uart_am | ||
return false; /* unable to transmit character */ | ||
|
||
pl011_write(c, uap, REG_DR); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
- reg | ||
--- a/drivers/tty/serial/amba-pl011.c | ||
+++ b/drivers/tty/serial/amba-pl011.c | ||
@@ -2835,6 +2835,11 @@ static int pl011_probe(struct amba_devic | ||
@@ -2847,6 +2847,11 @@ static int pl011_probe(struct amba_devic | ||
if (IS_ERR(uap->clk)) | ||
return PTR_ERR(uap->clk); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
--- a/drivers/tty/serial/amba-pl011.c | ||
+++ b/drivers/tty/serial/amba-pl011.c | ||
@@ -1493,6 +1493,10 @@ static bool pl011_tx_chars(struct uart_a | ||
@@ -1496,6 +1496,10 @@ static bool pl011_tx_chars(struct uart_a | ||
if (likely(from_irq) && count-- == 0) | ||
break; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,23 +36,23 @@ Signed-off-by: Noralf Trønnes <[email protected]> | |
static DEFINE_MUTEX(transaction_lock); | ||
|
||
static void response_callback(struct mbox_client *cl, void *msg) | ||
@@ -279,6 +281,7 @@ static int rpi_firmware_probe(struct pla | ||
@@ -280,6 +282,7 @@ static int rpi_firmware_probe(struct pla | ||
kref_init(&fw->consumers); | ||
|
||
platform_set_drvdata(pdev, fw); | ||
+ g_pdev = pdev; | ||
|
||
rpi_firmware_print_firmware_revision(fw); | ||
rpi_register_hwmon_driver(dev, fw); | ||
@@ -307,6 +310,7 @@ static int rpi_firmware_remove(struct pl | ||
@@ -308,6 +311,7 @@ static int rpi_firmware_remove(struct pl | ||
rpi_clk = NULL; | ||
|
||
rpi_firmware_put(fw); | ||
+ g_pdev = NULL; | ||
|
||
return 0; | ||
} | ||
@@ -381,7 +385,18 @@ static struct platform_driver rpi_firmwa | ||
@@ -382,7 +386,18 @@ static struct platform_driver rpi_firmwa | ||
.shutdown = rpi_firmware_shutdown, | ||
.remove = rpi_firmware_remove, | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
static void | ||
rpi_firmware_print_firmware_revision(struct rpi_firmware *fw) | ||
{ | ||
@@ -386,15 +407,32 @@ static struct platform_driver rpi_firmwa | ||
@@ -387,15 +408,32 @@ static struct platform_driver rpi_firmwa | ||
.remove = rpi_firmware_remove, | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ Signed-off-by: Dave Stevenson <[email protected]> | |
} | ||
|
||
static void | ||
@@ -338,6 +375,7 @@ static int rpi_firmware_probe(struct pla | ||
@@ -339,6 +376,7 @@ static int rpi_firmware_probe(struct pla | ||
g_pdev = pdev; | ||
|
||
rpi_firmware_print_firmware_revision(fw); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ Co-authored-by: Phil Elwell <[email protected]> | |
MODULE_DESCRIPTION("BCM2835 clock driver"); | ||
--- a/drivers/firmware/raspberrypi.c | ||
+++ b/drivers/firmware/raspberrypi.c | ||
@@ -498,7 +498,7 @@ out2: | ||
@@ -499,7 +499,7 @@ out2: | ||
out1: | ||
return ret; | ||
} | ||
|
55 changes: 0 additions & 55 deletions
55
...et/linux/bcm27xx/patches-5.15/950-0198-drm-fourcc-Add-packed-10bit-YUV-4-2-0-format.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
/* Device and char device-related information */ | ||
static DEFINE_IDA(gpio_ida); | ||
static dev_t gpio_devt; | ||
@@ -2392,8 +2394,8 @@ int gpiod_direction_output(struct gpio_d | ||
@@ -2395,8 +2397,8 @@ int gpiod_direction_output(struct gpio_d | ||
value = !!value; | ||
|
||
/* GPIOs used for enabled IRQs shall not be set as output */ | ||
|
@@ -37,7 +37,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
gpiod_err(desc, | ||
"%s: tried to set a GPIO tied to an IRQ as output\n", | ||
__func__); | ||
@@ -3211,8 +3213,8 @@ int gpiochip_lock_as_irq(struct gpio_chi | ||
@@ -3213,8 +3215,8 @@ int gpiochip_lock_as_irq(struct gpio_chi | ||
} | ||
|
||
/* To be valid for IRQ the line needs to be input or open drain */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
--- a/drivers/spi/spidev.c | ||
+++ b/drivers/spi/spidev.c | ||
@@ -669,6 +669,7 @@ static const struct file_operations spid | ||
@@ -680,6 +680,7 @@ static const struct file_operations spid | ||
static struct class *spidev_class; | ||
|
||
static const struct spi_device_id spidev_spi_ids[] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -205,7 +205,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
xhci_err(xhci, "Tried to move enqueue past ring segment\n"); | ||
return; | ||
} | ||
@@ -3153,7 +3156,7 @@ irqreturn_t xhci_irq(struct usb_hcd *hcd | ||
@@ -3159,7 +3162,7 @@ irqreturn_t xhci_irq(struct usb_hcd *hcd | ||
* that clears the EHB. | ||
*/ | ||
while (xhci_handle_event(xhci) > 0) { | ||
|
@@ -214,7 +214,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
continue; | ||
xhci_update_erst_dequeue(xhci, event_ring_deq); | ||
event_ring_deq = xhci->event_ring->dequeue; | ||
@@ -3295,7 +3298,8 @@ static int prepare_ring(struct xhci_hcd | ||
@@ -3301,7 +3304,8 @@ static int prepare_ring(struct xhci_hcd | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -440,9 +440,9 @@ Signed-off-by: Dave Stevenson <[email protected]> | |
st7701->dsi = dsi; | ||
- st7701->desc = desc; | ||
|
||
return mipi_dsi_attach(dsi); | ||
} | ||
@@ -397,21 +639,115 @@ static int st7701_dsi_remove(struct mipi | ||
ret = mipi_dsi_attach(dsi); | ||
if (ret) | ||
@@ -405,21 +647,115 @@ static int st7701_dsi_remove(struct mipi | ||
return 0; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
} | ||
|
||
static int spi_gpio_setup(struct spi_device *spi) | ||
@@ -289,6 +297,7 @@ static int spi_gpio_request(struct devic | ||
@@ -299,6 +307,7 @@ static int spi_gpio_request(struct devic | ||
if (IS_ERR(spi_gpio->miso)) | ||
return PTR_ERR(spi_gpio->miso); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && | ||
--- a/drivers/usb/host/xhci-ring.c | ||
+++ b/drivers/usb/host/xhci-ring.c | ||
@@ -3608,14 +3608,15 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
@@ -3614,14 +3614,15 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
unsigned int num_trbs; | ||
unsigned int start_cycle, num_sgs = 0; | ||
unsigned int enqd_len, block_len, trb_buff_len, full_len; | ||
|
@@ -54,7 +54,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
full_len = urb->transfer_buffer_length; | ||
/* If we have scatter/gather list, we use it. */ | ||
if (urb->num_sgs && !(urb->transfer_flags & URB_DMA_MAP_SINGLE)) { | ||
@@ -3652,6 +3653,17 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
@@ -3658,6 +3659,17 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
start_cycle = ring->cycle_state; | ||
send_addr = addr; | ||
|
||
|
@@ -72,7 +72,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
/* Queue the TRBs, even if they are zero-length */ | ||
for (enqd_len = 0; first_trb || enqd_len < full_len; | ||
enqd_len += trb_buff_len) { | ||
@@ -3664,6 +3676,11 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
@@ -3670,6 +3682,11 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
if (enqd_len + trb_buff_len > full_len) | ||
trb_buff_len = full_len - enqd_len; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
|
||
--- a/drivers/usb/host/xhci-ring.c | ||
+++ b/drivers/usb/host/xhci-ring.c | ||
@@ -3608,7 +3608,7 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
@@ -3614,7 +3614,7 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
unsigned int num_trbs; | ||
unsigned int start_cycle, num_sgs = 0; | ||
unsigned int enqd_len, block_len, trb_buff_len, full_len; | ||
|
@@ -22,7 +22,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
u32 field, length_field, remainder, maxpacket; | ||
u64 addr, send_addr; | ||
|
||
@@ -3654,14 +3654,9 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
@@ -3660,14 +3660,9 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
send_addr = addr; | ||
|
||
if (xhci->quirks & XHCI_VLI_SS_BULK_OUT_BUG && | ||
|
@@ -40,7 +40,7 @@ Signed-off-by: Jonathan Bell <[email protected]> | |
} | ||
|
||
/* Queue the TRBs, even if they are zero-length */ | ||
@@ -3676,7 +3671,7 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
@@ -3682,7 +3677,7 @@ int xhci_queue_bulk_tx(struct xhci_hcd * | ||
if (enqd_len + trb_buff_len > full_len) | ||
trb_buff_len = full_len - enqd_len; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ Reviewed-by: Vadim Pasternak <[email protected]> | |
|
||
--- a/drivers/hwmon/Kconfig | ||
+++ b/drivers/hwmon/Kconfig | ||
@@ -1684,6 +1684,19 @@ config SENSORS_EMC2103 | ||
@@ -1685,6 +1685,19 @@ config SENSORS_EMC2103 | ||
This driver can also be built as a module. If so, the module | ||
will be called emc2103. | ||
|
||
|
Oops, something went wrong.