9aa196e0f2
Refresh patches, following required reworking: ar71xx/patches-4.9/930-chipidea-pullup.patch layerscape/patches-4.9/302-dts-support-layercape.patch sunxi/patches-4.9/0052-stmmac-form-4-12.patch Fixes for CVEs: CVE-2018-1108 CVE-2018-1092 Tested on: ar71xx Archer C7 v2 Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> Tested-by: Koen Vandeputte <koen.vandeputte@ncentric.com> Tested-by: Arjen de Korte <build+openwrt@de-korte.org>
24 lines
709 B
Diff
24 lines
709 B
Diff
From cd4b1e34655d46950c065d9284b596cd8d7b28cd Mon Sep 17 00:00:00 2001
|
|
From: John Youn <johnyoun@synopsys.com>
|
|
Date: Thu, 3 Nov 2016 17:55:45 -0700
|
|
Subject: [PATCH] usb: dwc2: Remove unnecessary kfree
|
|
|
|
This shouldn't be freed by the HCD as it is owned by the core and
|
|
allocated with devm_kzalloc.
|
|
|
|
Signed-off-by: John Youn <johnyoun@synopsys.com>
|
|
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
|
|
---
|
|
drivers/usb/dwc2/hcd.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/drivers/usb/dwc2/hcd.c
|
|
+++ b/drivers/usb/dwc2/hcd.c
|
|
@@ -5188,7 +5188,6 @@ error3:
|
|
error2:
|
|
usb_put_hcd(hcd);
|
|
error1:
|
|
- kfree(hsotg->core_params);
|
|
|
|
#ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS
|
|
kfree(hsotg->last_frame_num_array);
|