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

Merge 4.1-rc7 into tty-next



This fixes up a merge issue with the amba-pl011.c driver, and we want
the fixes in this branch as well.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parents 1c4b1d73 d4a4f75c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -162,7 +162,7 @@ Description: Discover CPUs in the same CPU frequency coordination domain
What:		/sys/devices/system/cpu/cpu*/cache/index3/cache_disable_{0,1}
What:		/sys/devices/system/cpu/cpu*/cache/index3/cache_disable_{0,1}
Date:		August 2008
Date:		August 2008
KernelVersion:	2.6.27
KernelVersion:	2.6.27
Contact:	discuss@x86-64.org
Contact:	Linux kernel mailing list <linux-kernel@vger.kernel.org>
Description:	Disable L3 cache indices
Description:	Disable L3 cache indices


		These files exist in every CPU's cache/index3 directory. Each
		These files exist in every CPU's cache/index3 directory. Each
+3 −1
Original line number Original line Diff line number Diff line
@@ -17,7 +17,8 @@ Required properties:
- #clock-cells: from common clock binding; shall be set to 1.
- #clock-cells: from common clock binding; shall be set to 1.
- clocks: from common clock binding; list of parent clock
- clocks: from common clock binding; list of parent clock
  handles, shall be xtal reference clock or xtal and clkin for
  handles, shall be xtal reference clock or xtal and clkin for
  si5351c only.
  si5351c only. Corresponding clock input names are "xtal" and
  "clkin" respectively.
- #address-cells: shall be set to 1.
- #address-cells: shall be set to 1.
- #size-cells: shall be set to 0.
- #size-cells: shall be set to 0.


@@ -71,6 +72,7 @@ i2c-master-node {


		/* connect xtal input to 25MHz reference */
		/* connect xtal input to 25MHz reference */
		clocks = <&ref25>;
		clocks = <&ref25>;
		clock-names = "xtal";


		/* connect xtal input as source of pll0 and pll1 */
		/* connect xtal input as source of pll0 and pll1 */
		silabs,pll-source = <0 0>, <1 0>;
		silabs,pll-source = <0 0>, <1 0>;
+2 −1
Original line number Original line Diff line number Diff line
@@ -3,7 +3,8 @@
Required properties:
Required properties:
- compatible: Should be "cdns,[<chip>-]{emac}"
- compatible: Should be "cdns,[<chip>-]{emac}"
  Use "cdns,at91rm9200-emac" Atmel at91rm9200 SoC.
  Use "cdns,at91rm9200-emac" Atmel at91rm9200 SoC.
  or the generic form: "cdns,emac".
  Use "cdns,zynq-gem" Xilinx Zynq-7xxx SoC.
  Or the generic form: "cdns,emac".
- reg: Address and length of the register set for the device
- reg: Address and length of the register set for the device
- interrupts: Should contain macb interrupt
- interrupts: Should contain macb interrupt
- phy-mode: see ethernet.txt file in the same directory.
- phy-mode: see ethernet.txt file in the same directory.
+2 −4
Original line number Original line Diff line number Diff line
@@ -15,10 +15,8 @@ Optional properties:
  - phys: phandle + phy specifier pair
  - phys: phandle + phy specifier pair
  - phy-names: must be "usb"
  - phy-names: must be "usb"
  - dmas: Must contain a list of references to DMA specifiers.
  - dmas: Must contain a list of references to DMA specifiers.
  - dma-names : Must contain a list of DMA names:
  - dma-names : named "ch%d", where %d is the channel number ranging from zero
   - tx0 ... tx<n>
                to the number of channels (DnFIFOs) minus one.
   - rx0 ... rx<n>
    - This <n> means DnFIFO in USBHS module.


Example:
Example:
	usbhs: usb@e6590000 {
	usbhs: usb@e6590000 {
+1 −1
Original line number Original line Diff line number Diff line
@@ -20,7 +20,7 @@ Supported chips:
    Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp432.html
    Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp432.html
  * Texas Instruments TMP435
  * Texas Instruments TMP435
    Prefix: 'tmp435'
    Prefix: 'tmp435'
    Addresses scanned: I2C 0x37, 0x48 - 0x4f
    Addresses scanned: I2C 0x48 - 0x4f
    Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp435.html
    Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp435.html


Authors:
Authors:
Loading