mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
1e700846d6
The Allwinner A10 compatibles were following a slightly different compatible patterns than the rest of the SoCs for historical reasons. Change the compatibles to match the other pattern in the SID driver for consistency. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18 lines
380 B
Plaintext
18 lines
380 B
Plaintext
Allwinner sunxi-sid
|
|
|
|
Required properties:
|
|
- compatible: "allwinner,sun4i-a10-sid" or "allwinner,sun7i-a20-sid"
|
|
- reg: Should contain registers location and length
|
|
|
|
Example for sun4i:
|
|
sid@01c23800 {
|
|
compatible = "allwinner,sun4i-a10-sid";
|
|
reg = <0x01c23800 0x10>
|
|
};
|
|
|
|
Example for sun7i:
|
|
sid@01c23800 {
|
|
compatible = "allwinner,sun7i-a20-sid";
|
|
reg = <0x01c23800 0x200>
|
|
};
|