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

Commit 6ac7ada2 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

Merge tag 'asoc-fix-v4.2-rc5' of...

Merge tag 'asoc-fix-v4.2-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus

ASoC: Fixes for v4.2

There are a couple of small driver specific fixes here but the
overwhelming bulk of these changes are fixes to the topology ABI that
has been newly introduced in v4.2.  Once this makes it into a release we
will have to firm this up but for now getting enhancements in before
they've made it into a release is the most expedient thing.
parents 73851b36 d00a9e02
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ Example:
			device_type = "dma";
			reg = <0x0 0x1f270000 0x0 0x10000>,
			      <0x0 0x1f200000 0x0 0x10000>,
			      <0x0 0x1b008000 0x0 0x2000>,
			      <0x0 0x1b000000 0x0 0x400000>,
			      <0x0 0x1054a000 0x0 0x100>;
			interrupts = <0x0 0x82 0x4>,
				     <0x0 0xb8 0x4>,
+3 −0
Original line number Diff line number Diff line
@@ -35,3 +35,6 @@ the PCIe specification.

                      NOTE: this only applies to the SMMU itself, not
                      masters connected upstream of the SMMU.

- hisilicon,broken-prefetch-cmd
                    : Avoid sending CMD_PREFETCH_* commands to the SMMU.
+0 −2
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@ Required properties:
	       "fsl,imx6sx-usdhc"

Optional properties:
- fsl,cd-controller : Indicate to use controller internal card detection
- fsl,wp-controller : Indicate to use controller internal write protection
- fsl,delay-line : Specify the number of delay cells for override mode.
  This is used to set the clock delay for DLL(Delay Line) on override mode
@@ -35,7 +34,6 @@ esdhc@70004000 {
	compatible = "fsl,imx51-esdhc";
	reg = <0x70004000 0x4000>;
	interrupts = <1>;
	fsl,cd-controller;
	fsl,wp-controller;
};

+3 −3
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ Binding for Qualcomm Atheros AR7xxx/AR9xxx SPI controller
Required properties:
- compatible: has to be "qca,<soc-type>-spi", "qca,ar7100-spi" as fallback.
- reg: Base address and size of the controllers memory area
- clocks: phandle to the AHB clock.
- clocks: phandle of the AHB clock.
- clock-names: has to be "ahb".
- #address-cells: <1>, as required by generic SPI binding.
- #size-cells: <0>, also as required by generic SPI binding.
@@ -12,9 +12,9 @@ Child nodes as per the generic SPI binding.

Example:

	spi@1F000000 {
	spi@1f000000 {
		compatible = "qca,ar9132-spi", "qca,ar7100-spi";
		reg = <0x1F000000 0x10>;
		reg = <0x1f000000 0x10>;

		clocks = <&pll 2>;
		clock-names = "ahb";
+2 −2
Original line number Diff line number Diff line
@@ -35,11 +35,11 @@ temp1_input Local temperature (1/1000 degree,
temp[2-9]_input		CPU temperatures (1/1000 degree,
			0.125 degree resolution)

fan[1-4]_mode		R/W, 0/1 for manual or SmartFan mode
pwm[1-4]_enable		R/W, 1/2 for manual or SmartFan mode
			Setting SmartFan mode is supported only if it has been
			previously configured by BIOS (or configuration EEPROM)

fan[1-4]_pwm		R/O in SmartFan mode, R/W in manual control mode
pwm[1-4]		R/O in SmartFan mode, R/W in manual control mode

The driver checks sensor control registers and does not export the sensors
that are not enabled. Anyway, a sensor that is enabled may actually be not
Loading