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

Commit 1b3ce1cf authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Merge remote-tracking branch 'remotes/origin/tmp-e9a2c5dd' into msm-4.14"

parents 7280855a 2d5f817a
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -109,6 +109,17 @@ fec_start <offset>
    This is the offset, in <data_block_size> blocks, from the start of the
    FEC device to the beginning of the encoding data.

check_at_most_once
    Verify data blocks only the first time they are read from the data device,
    rather than every time.  This reduces the overhead of dm-verity so that it
    can be used on systems that are memory and/or CPU constrained.  However, it
    provides a reduced level of security because only offline tampering of the
    data device's content will be detected, not online tampering.

    Hash blocks are still verified each time they are read from the hash device,
    since verification of hash blocks is less performance critical than data
    blocks, and a hash block will not be verified any more after all the data
    blocks it covers have been verified anyway.

Theory of operation
===================
+1 −1
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
VERSION = 4
PATCHLEVEL = 14
SUBLEVEL = 35
SUBLEVEL = 36
EXTRAVERSION =
NAME = Petit Gorille

+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
				atmel,mux-mask = <
				      /*    A         B          C     */
				       0xffffffff 0xffe0399f 0xc000001c  /* pioA */
				       0x0007ffff 0x8000fe3f 0x00000000  /* pioB */
				       0x0007ffff 0x00047e3f 0x00000000  /* pioB */
				       0x80000000 0x07c0ffff 0xb83fffff  /* pioC */
				       0x003fffff 0x003f8000 0x00000000  /* pioD */
				      >;
+2 −2
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@
	 */
	battery {
		pinctrl-names = "default";
		pintctrl-0 = <&battery_pins>;
		pinctrl-0 = <&battery_pins>;
		compatible = "lego,ev3-battery";
		io-channels = <&adc 4>, <&adc 3>;
		io-channel-names = "voltage", "current";
@@ -392,7 +392,7 @@
	batt_volt_en {
		gpio-hog;
		gpios = <6 GPIO_ACTIVE_HIGH>;
		output-low;
		output-high;
	};
};

+4 −4
Original line number Diff line number Diff line
@@ -643,7 +643,7 @@
			power-domains = <&pd_gsc>;
			clocks = <&clock CLK_GSCL0>;
			clock-names = "gscl";
			iommu = <&sysmmu_gsc0>;
			iommus = <&sysmmu_gsc0>;
		};

		gsc_1:  gsc@13e10000 {
@@ -653,7 +653,7 @@
			power-domains = <&pd_gsc>;
			clocks = <&clock CLK_GSCL1>;
			clock-names = "gscl";
			iommu = <&sysmmu_gsc1>;
			iommus = <&sysmmu_gsc1>;
		};

		gsc_2:  gsc@13e20000 {
@@ -663,7 +663,7 @@
			power-domains = <&pd_gsc>;
			clocks = <&clock CLK_GSCL2>;
			clock-names = "gscl";
			iommu = <&sysmmu_gsc2>;
			iommus = <&sysmmu_gsc2>;
		};

		gsc_3:  gsc@13e30000 {
@@ -673,7 +673,7 @@
			power-domains = <&pd_gsc>;
			clocks = <&clock CLK_GSCL3>;
			clock-names = "gscl";
			iommu = <&sysmmu_gsc3>;
			iommus = <&sysmmu_gsc3>;
		};

		hdmi: hdmi@14530000 {
Loading