Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 269763
b: refs/heads/master
c: a88cab2
h: refs/heads/master
i:
  269761: 1928c1e
  269759: 7498832
v: v3
  • Loading branch information
Inki Dae authored and Dave Airlie committed Oct 18, 2011
1 parent 257a67d commit 30b32d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ccf4d883f82e10053fa5806f2cd35401012bec84
refs/heads/master: a88cab2bb15bbfe7ab39efc45ebd414d30dbb258
2 changes: 1 addition & 1 deletion trunk/drivers/gpu/drm/exynos/exynos_drm_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ struct exynos_drm_overlay {
* Exynos DRM Display Structure.
* - this structure is common to analog tv, digital tv and lcd panel.
*
* @type: one of exynos_DISPLAY_TYPE_LCD and HDMI.
* @type: one of EXYNOS_DISPLAY_TYPE_LCD and HDMI.
* @is_connected: check for that display is connected or not.
* @get_edid: get edid modes from display driver.
* @get_timing: get timing object from display driver.
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/gpu/drm/exynos/exynos_drm_fimd.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ struct fimd_context {

static bool fimd_display_is_connected(struct device *dev)
{
struct fimd_context *ctx = get_fimd_context(dev);

DRM_DEBUG_KMS("%s\n", __FILE__);

/* TODO. */
Expand All @@ -110,8 +108,6 @@ static void *fimd_get_timing(struct device *dev)

static int fimd_check_timing(struct device *dev, void *timing)
{
struct fimd_context *ctx = get_fimd_context(dev);

DRM_DEBUG_KMS("%s\n", __FILE__);

/* TODO. */
Expand All @@ -121,8 +117,6 @@ static int fimd_check_timing(struct device *dev, void *timing)

static int fimd_display_power_on(struct device *dev, int mode)
{
struct fimd_context *ctx = get_fimd_context(dev);

DRM_DEBUG_KMS("%s\n", __FILE__);

/* TODO. */
Expand Down Expand Up @@ -499,7 +493,7 @@ static void fimd_finish_pageflip(struct drm_device *drm_dev, int crtc)

list_for_each_entry_safe(e, t, &dev_priv->pageflip_event_list,
base.link) {
/* if event's pipe isn't same as crtc then ignor it. */
/* if event's pipe isn't same as crtc then ignore it. */
if (crtc != e->pipe)
continue;

Expand All @@ -525,7 +519,6 @@ static irqreturn_t fimd_irq_handler(int irq, void *dev_id)
struct fimd_context *ctx = (struct fimd_context *)dev_id;
struct exynos_drm_subdrv *subdrv = &ctx->subdrv;
struct drm_device *drm_dev = subdrv->drm_dev;
struct device *dev = subdrv->manager.dev;
struct exynos_drm_manager *manager = &subdrv->manager;
u32 val;

Expand All @@ -543,8 +536,6 @@ static irqreturn_t fimd_irq_handler(int irq, void *dev_id)

static int fimd_subdrv_probe(struct drm_device *drm_dev, struct device *dev)
{
struct drm_driver *drm_driver = drm_dev->driver;

DRM_DEBUG_KMS("%s\n", __FILE__);

/*
Expand All @@ -569,8 +560,6 @@ static int fimd_subdrv_probe(struct drm_device *drm_dev, struct device *dev)

static void fimd_subdrv_remove(struct drm_device *drm_dev)
{
struct drm_driver *drm_driver = drm_dev->driver;

DRM_DEBUG_KMS("%s\n", __FILE__);

/* TODO. */
Expand Down

0 comments on commit 30b32d5

Please sign in to comment.