summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNaveen Kumar Gaddipati <naveen.gaddipati@stericsson.com>2011-09-05 17:14:01 +0530
committerMathieu J. Poirier <mathieu.poirier@linaro.org>2011-11-10 11:04:20 -0700
commitdb56dc8b5ec4a0ac5ba0487eede405a6f6e0f086 (patch)
tree1d34e29d08f9c57c29f37ff61d02545d18e000eb /include
parent31dec2274eaf737a52a4578238764912ceda5d49 (diff)
video: mcde: remove PDP config
The PDP config and display Sony sy35560 is removed. ST-Ericsson ID: 341938 ST-Ericsson FOSS-OUT ID: Trivial ST-Ericsson Linux next: Not tested, ER 282779 Signed-off-by: Anders Bauer <anders.bauer@stericsson.com> Change-Id: I629336f6b7fe282145bf70dfd9a0cca2f0d3ea02 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/30125 Reviewed-by: Naveen Kumar GADDIPATI <naveen.gaddipati@stericsson.com> Tested-by: Naveen Kumar GADDIPATI <naveen.gaddipati@stericsson.com>
Diffstat (limited to 'include')
-rw-r--r--include/video/mcde_display-sony_sy35560_dsi.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/include/video/mcde_display-sony_sy35560_dsi.h b/include/video/mcde_display-sony_sy35560_dsi.h
deleted file mode 100644
index 997a7ed1f85..00000000000
--- a/include/video/mcde_display-sony_sy35560_dsi.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) ST-Ericsson SA 2010
- *
- * ST-Ericsson MCDE Sony sy35560 DCS display driver
- *
- * Author: Marcus Lorentzon <marcus.xm.lorentzon@stericsson.com>
- * for ST-Ericsson.
- *
- * License terms: GNU General Public License (GPL), version 2.
- */
-#ifndef __MCDE_DISPLAY_SONY_SY35560__H__
-#define __MCDE_DISPLAY_SONY_SY35560__H__
-
-#include <linux/regulator/consumer.h>
-
-#include "mcde_display.h"
-#include <linux/workqueue.h>
-
-/* period between ESD status checks */
-#define SONY_SY35560_ESD_CHECK_PERIOD msecs_to_jiffies(10000)
-
-struct sony_sy35560_platform_data {
- /* Platform info */
- int reset_gpio;
- bool reset_high;
- const char *regulator_id;
- bool skip_init;
-
- /* Driver data */
- int max_supply_voltage;
- int min_supply_voltage;
-};
-
-struct sony_sy35560_device {
- struct mcde_display_device base;
-
- struct regulator *regulator;
-
- /* ESD workqueue */
- struct workqueue_struct *esd_wq;
- struct delayed_work esd_work;
-};
-
-#endif /* __MCDE_DISPLAY_SONY_SY35560__H__ */
-