summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/video/mcde/display-sony_acx424akp_dsi.c3
-rw-r--r--include/video/mcde_display-sony_acx424akp_dsi.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/mcde/display-sony_acx424akp_dsi.c b/drivers/video/mcde/display-sony_acx424akp_dsi.c
index 7c4f69a0cae..b570e832893 100644
--- a/drivers/video/mcde/display-sony_acx424akp_dsi.c
+++ b/drivers/video/mcde/display-sony_acx424akp_dsi.c
@@ -298,7 +298,8 @@ static int __devinit sony_acx424akp_probe(struct mcde_display_device *dev)
switch (id) {
case DISPLAY_SONY_ACX424AKP:
- pdata->disp_panel = DISPLAY_SONY_ACX424AKP;
+ case DISPLAY_SONY_ACX424AKP_ID2:
+ pdata->disp_panel = id;
dev_info(&dev->dev,
"Sony ACX424AKP display (ID 0x%.4X) probed\n", id);
break;
diff --git a/include/video/mcde_display-sony_acx424akp_dsi.h b/include/video/mcde_display-sony_acx424akp_dsi.h
index 9f656fdcc3b..29fb14a3fdb 100644
--- a/include/video/mcde_display-sony_acx424akp_dsi.h
+++ b/include/video/mcde_display-sony_acx424akp_dsi.h
@@ -14,6 +14,7 @@
enum display_panel_type {
DISPLAY_NONE = 0,
DISPLAY_SONY_ACX424AKP = 0x1b81,
+ DISPLAY_SONY_ACX424AKP_ID2 = 0x1a81,
};
struct mcde_display_sony_acx424akp_platform_data {