mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
b4aad29a1d
Enable testing kernel. Delete upstreamed patches: 0098-disable_cm.patch can be dropped, upstream fixed CM handling. Fix compile errors by using new kernel APIs. Fix fuzz by manually editing patches to ensure the code goes in the right place. For 721-NET-no-auto-carrier-off-support.patch, revert upstream commit a307593a6 to keep the OpenWrt ralink driver operational. Add mt7621-pci-phy patch to select REGMAP_MMIO as discussed in PR #3693 and #3952. Rename patches to follow the 3-digit classification from the OpenWrt Developer Guide. Run automatic quilt refresh. Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
16 lines
355 B
Diff
16 lines
355 B
Diff
--- a/arch/mips/ralink/irq-gic.c
|
|
+++ b/arch/mips/ralink/irq-gic.c
|
|
@@ -13,6 +13,12 @@
|
|
|
|
int get_c0_perfcount_int(void)
|
|
{
|
|
+ /*
|
|
+ * Performance counter events are routed through GIC.
|
|
+ * Prevent them from firing on CPU IRQ7 as well
|
|
+ */
|
|
+ clear_c0_status(IE_SW0 << 7);
|
|
+
|
|
return gic_get_c0_perfcount_int();
|
|
}
|
|
EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
|