diff options
author | Anatolij Gustschin <agust@denx.de> | 2010-02-17 09:33:22 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-02-17 09:33:22 -0500 |
commit | d24720a45ad2928f687c6371482cdfba19b74fc5 (patch) | |
tree | d7adfe21ae927ce5a81bc41e15fe8c6f146a2190 /drivers/video | |
parent | 85cd7467f3a66800c20815d3fca45d33038b9279 (diff) |
powerpc/mpc5121: correct DIU compatible property
The DIU driver should bind against "fsl,mpc5121-diu"
directly. Add this compatible property to the match
table and fix DTS and platform code accordingly.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fsl-diu-fb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/video/fsl-diu-fb.c b/drivers/video/fsl-diu-fb.c index 72d68b3dc478..4637bcbe03a4 100644 --- a/drivers/video/fsl-diu-fb.c +++ b/drivers/video/fsl-diu-fb.c | |||
@@ -1633,6 +1633,11 @@ static int __init fsl_diu_setup(char *options) | |||
1633 | #endif | 1633 | #endif |
1634 | 1634 | ||
1635 | static struct of_device_id fsl_diu_match[] = { | 1635 | static struct of_device_id fsl_diu_match[] = { |
1636 | #ifdef CONFIG_PPC_MPC512x | ||
1637 | { | ||
1638 | .compatible = "fsl,mpc5121-diu", | ||
1639 | }, | ||
1640 | #endif | ||
1636 | { | 1641 | { |
1637 | .compatible = "fsl,diu", | 1642 | .compatible = "fsl,diu", |
1638 | }, | 1643 | }, |