Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f553ed04 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

ANDROID: Revert: Merge 5.4.60 into android11-5.4



Something is going flaky with the ABI checker, so back this merge out at
the moment so that we can fix things up first before merging this back
in.

Bug: 161946584
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
Change-Id: I41ada004b1596b4961f95d9de48ca7b677d05226
parent 98f3e290
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ controller state. The mux controller state is described in

Example:
	mux: mux-controller {
		compatible = "gpio-mux";
		compatible = "mux-gpio";
		#mux-control-cells = <0>;

		mux-gpios = <&pioA 0 GPIO_ACTIVE_HIGH>,
+1 −1
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
VERSION = 5
PATCHLEVEL = 4
SUBLEVEL = 60
SUBLEVEL = 59
EXTRAVERSION =
NAME = Kleptomaniac Octopus

+0 −6
Original line number Diff line number Diff line
@@ -19,12 +19,6 @@
	model = "Globalscale Marvell ESPRESSOBin Board";
	compatible = "globalscale,espressobin", "marvell,armada3720", "marvell,armada3710";

	aliases {
		ethernet0 = &eth0;
		serial0 = &uart0;
		serial1 = &uart1;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};
+5 −8
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ armv8pmu_events_sysfs_show(struct device *dev,

	pmu_attr = container_of(attr, struct perf_pmu_events_attr, attr);

	return sprintf(page, "event=0x%04llx\n", pmu_attr->id);
	return sprintf(page, "event=0x%03llx\n", pmu_attr->id);
}

#define ARMV8_EVENT_ATTR(name, config) \
@@ -303,13 +303,10 @@ armv8pmu_event_attr_is_visible(struct kobject *kobj,
	    test_bit(pmu_attr->id, cpu_pmu->pmceid_bitmap))
		return attr->mode;

	if (pmu_attr->id >= ARMV8_PMUV3_EXT_COMMON_EVENT_BASE) {
		u64 id = pmu_attr->id - ARMV8_PMUV3_EXT_COMMON_EVENT_BASE;

		if (id < ARMV8_PMUV3_MAX_COMMON_EVENTS &&
		    test_bit(id, cpu_pmu->pmceid_ext_bitmap))
	pmu_attr->id -= ARMV8_PMUV3_EXT_COMMON_EVENT_BASE;
	if (pmu_attr->id < ARMV8_PMUV3_MAX_COMMON_EVENTS &&
	    test_bit(pmu_attr->id, cpu_pmu->pmceid_ext_bitmap))
		return attr->mode;
	}

	return 0;
}
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@
			"Speaker", "OUTL",
			"Speaker", "OUTR",
			"INL", "LOUT",
			"INR", "ROUT";
			"INL", "ROUT";

		simple-audio-card,aux-devs = <&amp>;

Loading