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

Commit 9430148d authored by Takashi Iwai's avatar Takashi Iwai
Browse files

Merge branch 'topic/remove-irqf_disable' into for-linus

parents d2266570 88e24c3a
Loading
Loading
Loading
Loading
+11 −0
Original line number Original line Diff line number Diff line
* Freescale SGTL5000 Stereo Codec

Required properties:
- compatible : "fsl,sgtl5000".

Example:

codec: sgtl5000@0a {
	compatible = "fsl,sgtl5000";
	reg = <0x0a>;
};
+18 −0
Original line number Original line Diff line number Diff line
WM8510 audio CODEC

This device supports both I2C and SPI (configured with pin strapping
on the board).

Required properties:

  - compatible : "wlf,wm8510"

  - reg : the I2C address of the device for I2C, the chip select
          number for SPI.

Example:

codec: wm8510@1a {
	compatible = "wlf,wm8510";
	reg = <0x1a>;
};
+16 −0
Original line number Original line Diff line number Diff line
WM8523 audio CODEC

This device supports I2C only.

Required properties:

  - compatible : "wlf,wm8523"

  - reg : the I2C address of the device.

Example:

codec: wm8523@1a {
	compatible = "wlf,wm8523";
	reg = <0x1a>;
};
+16 −0
Original line number Original line Diff line number Diff line
WM8580 audio CODEC

This device supports I2C only.

Required properties:

  - compatible : "wlf,wm8580"

  - reg : the I2C address of the device.

Example:

codec: wm8580@1a {
	compatible = "wlf,wm8580";
	reg = <0x1a>;
};
+18 −0
Original line number Original line Diff line number Diff line
WM8711 audio CODEC

This device supports both I2C and SPI (configured with pin strapping
on the board).

Required properties:

  - compatible : "wlf,wm8711"

  - reg : the I2C address of the device for I2C, the chip select
          number for SPI.

Example:

codec: wm8711@1a {
	compatible = "wlf,wm8711";
	reg = <0x1a>;
};
Loading