diff options
author | Roger Quadros <roger.quadros@nokia.com> | 2010-03-17 08:35:19 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-05-18 07:14:29 -0400 |
commit | b4d78bf7a4663c8354ec9432eb9631b144a33ffa (patch) | |
tree | a62dabb850bb998f88891b79a3843b4033789c28 /drivers/video/omap2/dss/display.c | |
parent | 14ec4740ff64e4111216287b1e8d51d515618b56 (diff) |
OMAP: DSS2: Add Kconfig option for DPI display type
This allows us to disable DPI on systems that do not have it
Signed-off-by: Roger Quadros <roger.quadros@nokia.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video/omap2/dss/display.c')
-rw-r--r-- | drivers/video/omap2/dss/display.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/display.c b/drivers/video/omap2/dss/display.c index 6a74ea116d29..71389630b108 100644 --- a/drivers/video/omap2/dss/display.c +++ b/drivers/video/omap2/dss/display.c | |||
@@ -392,7 +392,9 @@ void dss_init_device(struct platform_device *pdev, | |||
392 | int r; | 392 | int r; |
393 | 393 | ||
394 | switch (dssdev->type) { | 394 | switch (dssdev->type) { |
395 | #ifdef CONFIG_OMAP2_DSS_DPI | ||
395 | case OMAP_DISPLAY_TYPE_DPI: | 396 | case OMAP_DISPLAY_TYPE_DPI: |
397 | #endif | ||
396 | #ifdef CONFIG_OMAP2_DSS_RFBI | 398 | #ifdef CONFIG_OMAP2_DSS_RFBI |
397 | case OMAP_DISPLAY_TYPE_DBI: | 399 | case OMAP_DISPLAY_TYPE_DBI: |
398 | #endif | 400 | #endif |
@@ -413,9 +415,11 @@ void dss_init_device(struct platform_device *pdev, | |||
413 | } | 415 | } |
414 | 416 | ||
415 | switch (dssdev->type) { | 417 | switch (dssdev->type) { |
418 | #ifdef CONFIG_OMAP2_DSS_DPI | ||
416 | case OMAP_DISPLAY_TYPE_DPI: | 419 | case OMAP_DISPLAY_TYPE_DPI: |
417 | r = dpi_init_display(dssdev); | 420 | r = dpi_init_display(dssdev); |
418 | break; | 421 | break; |
422 | #endif | ||
419 | #ifdef CONFIG_OMAP2_DSS_RFBI | 423 | #ifdef CONFIG_OMAP2_DSS_RFBI |
420 | case OMAP_DISPLAY_TYPE_DBI: | 424 | case OMAP_DISPLAY_TYPE_DBI: |
421 | r = rfbi_init_display(dssdev); | 425 | r = rfbi_init_display(dssdev); |