summaryrefslogtreecommitdiff
path: root/target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-09-14 22:25:09 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-09-14 22:25:09 +0200
commit3362d9fb3a94d0909b79c290abc8db6abe4cca21 (patch)
tree35f9e4dfaeb691fe09fcd95b45dc440f0338a1b5 /target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch
parent51e1f1476f74d6788b106a066dfebd8ec6ac1bd9 (diff)
downloadmtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.zip
mtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.tar.gz
mtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.tar.bz2
target/linux : drop many arch
Diffstat (limited to 'target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch')
-rw-r--r--target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch62
1 files changed, 0 insertions, 62 deletions
diff --git a/target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch b/target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch
deleted file mode 100644
index 93d17a3..0000000
--- a/target/linux/brcm2708/patches-3.10/0080-Fix-function-tracing.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-From f7785b067f07e444934fe0e6c31fff36f5863079 Mon Sep 17 00:00:00 2001
-From: Gordon Hollingworth <gordon@holliweb.co.uk>
-Date: Mon, 8 Jul 2013 04:12:19 +0100
-Subject: [PATCH 080/174] Fix function tracing
-
----
- drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
---- a/drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c
-+++ b/drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c
-@@ -77,7 +77,7 @@ int queued_port[MAX_EPS_CHANNELS];
- #ifdef FIQ_DEBUG
- char buffer[1000*16];
- int wptr;
--void _fiq_print(FIQDBG_T dbg_lvl, char *fmt, ...)
-+void notrace _fiq_print(FIQDBG_T dbg_lvl, char *fmt, ...)
- {
- FIQDBG_T dbg_lvl_req = FIQDBG_PORTHUB;
- va_list args;
-@@ -101,7 +101,7 @@ void _fiq_print(FIQDBG_T dbg_lvl, char *
- }
- #endif
-
--void fiq_queue_request(int channel, int odd_frame)
-+void notrace fiq_queue_request(int channel, int odd_frame)
- {
- hcchar_data_t hcchar = { .d32 = FIQ_READ(dwc_regs_base + 0x500 + (channel * 0x20) + 0x0) };
- hcsplt_data_t hcsplt = { .d32 = FIQ_READ(dwc_regs_base + 0x500 + (channel * 0x20) + 0x4) };
-@@ -147,7 +147,7 @@ static int last_sof = -1;
- */
- int diff;
-
--int fiq_sof_handle(hfnum_data_t hfnum)
-+int notrace fiq_sof_handle(hfnum_data_t hfnum)
- {
- int handled = 0;
- int i;
-@@ -206,12 +206,12 @@ int fiq_sof_handle(hfnum_data_t hfnum)
- return handled;
- }
-
--int port_id(hcsplt_data_t hcsplt)
-+int notrace port_id(hcsplt_data_t hcsplt)
- {
- return hcsplt.b.prtaddr + (hcsplt.b.hubaddr << 8);
- }
-
--int fiq_hcintr_handle(int channel, hfnum_data_t hfnum)
-+int notrace fiq_hcintr_handle(int channel, hfnum_data_t hfnum)
- {
- hcchar_data_t hcchar = { .d32 = FIQ_READ(dwc_regs_base + 0x500 + (channel * 0x20) + 0x0) };
- hcsplt_data_t hcsplt = { .d32 = FIQ_READ(dwc_regs_base + 0x500 + (channel * 0x20) + 0x4) };
-@@ -361,7 +361,7 @@ gintmsk_data_t gintmsk;
- gintsts_data_t triggered, handled, keep;
- hfnum_data_t hfnum;
-
--void __attribute__ ((naked)) dwc_otg_hcd_handle_fiq(void)
-+void __attribute__ ((naked)) notrace dwc_otg_hcd_handle_fiq(void)
- {
-
- /* entry takes care to store registers we will be treading on here */