forked from Minki/linux
Input: lpc32xx_ts - fix device tree compatible string
During the device tree integration of the various LPC32xx drivers, we agreed on using non-wildcard "compatible" strings. This change switches lpc32xx_ts touchscreen driver to use "nxp,lpc3220-tsc". Signed-off-by: Roland Stigge <stigge@antcom.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
f57fe78ee4
commit
34604086be
@ -1,7 +1,7 @@
|
|||||||
* NXP LPC32xx SoC Touchscreen Controller (TSC)
|
* NXP LPC32xx SoC Touchscreen Controller (TSC)
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
- compatible: must be "nxp,lpc32xx-tsc"
|
- compatible: must be "nxp,lpc3220-tsc"
|
||||||
- reg: physical base address of the controller and length of memory mapped
|
- reg: physical base address of the controller and length of memory mapped
|
||||||
region.
|
region.
|
||||||
- interrupts: The TSC/ADC interrupt
|
- interrupts: The TSC/ADC interrupt
|
||||||
@ -9,7 +9,7 @@ Required properties:
|
|||||||
Example:
|
Example:
|
||||||
|
|
||||||
tsc@40048000 {
|
tsc@40048000 {
|
||||||
compatible = "nxp,lpc32xx-tsc";
|
compatible = "nxp,lpc3220-tsc";
|
||||||
reg = <0x40048000 0x1000>;
|
reg = <0x40048000 0x1000>;
|
||||||
interrupt-parent = <&mic>;
|
interrupt-parent = <&mic>;
|
||||||
interrupts = <39 0>;
|
interrupts = <39 0>;
|
||||||
|
@ -386,7 +386,7 @@ static const struct dev_pm_ops lpc32xx_ts_pm_ops = {
|
|||||||
|
|
||||||
#ifdef CONFIG_OF
|
#ifdef CONFIG_OF
|
||||||
static struct of_device_id lpc32xx_tsc_of_match[] = {
|
static struct of_device_id lpc32xx_tsc_of_match[] = {
|
||||||
{ .compatible = "nxp,lpc32xx-tsc", },
|
{ .compatible = "nxp,lpc3220-tsc", },
|
||||||
{ },
|
{ },
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, lpc32xx_tsc_of_match);
|
MODULE_DEVICE_TABLE(of, lpc32xx_tsc_of_match);
|
||||||
|
Loading…
Reference in New Issue
Block a user