ARM: tegra: Cleanup patches for v4.3-rc1
Just a couple of trivial cleanups to make the HDA controller driver code match the device tree binding. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAABCAAGBQJVzfC8AAoJEN0jrNd/PrOhMtYQALEt95moWQKVPsLAe6DZg6LO 4xNmbnYbUy0YCe7OFd93cv2bFH3gTr7WDpQ1XUUnuGCMvS2DN+GSLOWYTxb8z5VW w6ZRuyM3RDUD5Qyff2gfC1CQpZATiuNmQy1b4hwf5/W9drx8t6O/E94qkvNABdTY aa2cukHYmKoLRIVrqU00JS/+tpA+L55LyQxL1LiUXuuwNSQTTgLr/JkUCgwHXOv5 +/FaFJoROsKJ1VR4Z9mhXiUdMwmfJio589MImfQL3tg57S5ZqTrezRt21ECHTMo9 rvvzzVuIk3QBHlDLI9KzK4PdyzJFfE/SM44DouE9wG+6rtozczTg+y/suJ5KnrZp Wxtx0B1NLk36WHfBjdH3EtQDB5FdemP+8clz14Wfc98wzqbaiM5DHlrYE4ZcFiwG CdkmrZSCy6TKCggMjI5y0jQgpb9FFzArDZdIdLV2yW/bYx6WjSh955pGsd/WrBYq HwhTLyTAHKbyjldePSkt182qyTNI0auOa/Ff+f/eW0T2L9UEmoDAz3y5V4VOhEqk U9O9jB1Yuhk9GS1T0UiNvI/+mwzDGkK8r7dFdo1wF8gxzwuglzvje0hauvDpgezO u7wRdYoLKHwd59Hs62Cgtsb38TiYN+qiS1kaX0CZrIMkbCNJd6+aObID4GMSoiUn YEA+QDojFuJvKsNW1BN/ =fn9p -----END PGP SIGNATURE----- Merge tag 'tegra-for-4.3-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into next/cleanup ARM: tegra: Cleanup patches for v4.3-rc1 Just a couple of trivial cleanups to make the HDA controller driver code match the device tree binding. * tag 'tegra-for-4.3-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux: ALSA: hda/tegra: Order clock and reset names consistently ALSA: hda/tegra - Fix hda2codec_2x clock and reset names Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
commit
97a2482d98
|
@ -8,10 +8,10 @@ Required properties:
|
||||||
- interrupts : The interrupt from the HDA controller.
|
- interrupts : The interrupt from the HDA controller.
|
||||||
- clocks : Must contain an entry for each required entry in clock-names.
|
- clocks : Must contain an entry for each required entry in clock-names.
|
||||||
See ../clocks/clock-bindings.txt for details.
|
See ../clocks/clock-bindings.txt for details.
|
||||||
- clock-names : Must include the following entries: hda, hdacodec_2x, hda2hdmi
|
- clock-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
|
||||||
- resets : Must contain an entry for each entry in reset-names.
|
- resets : Must contain an entry for each entry in reset-names.
|
||||||
See ../reset/reset.txt for details.
|
See ../reset/reset.txt for details.
|
||||||
- reset-names : Must include the following entries: hda, hdacodec_2x, hda2hdmi
|
- reset-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ hda@0,70030000 {
|
||||||
<&tegra_car TEGRA124_CLK_HDA2CODEC_2X>;
|
<&tegra_car TEGRA124_CLK_HDA2CODEC_2X>;
|
||||||
clock-names = "hda", "hda2hdmi", "hda2codec_2x";
|
clock-names = "hda", "hda2hdmi", "hda2codec_2x";
|
||||||
resets = <&tegra_car 125>, /* hda */
|
resets = <&tegra_car 125>, /* hda */
|
||||||
<&tegra_car 128>; /* hda2hdmi */
|
<&tegra_car 128>, /* hda2hdmi */
|
||||||
<&tegra_car 111>, /* hda2codec_2x */
|
<&tegra_car 111>; /* hda2codec_2x */
|
||||||
reset-names = "hda", "hda2hdmi", "hda2codec_2x";
|
reset-names = "hda", "hda2hdmi", "hda2codec_2x";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue