diff options
author | Eunchul Kim <chulspro.kim@samsung.com> | 2012-12-22 12:49:23 +0400 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2013-01-04 10:54:33 +0400 |
commit | 0ca824c7df2f2d79933ea66adb2b3dfabb85f283 (patch) | |
tree | 973e5bf226506a88de5322bfd5d6d8ccb40691d6 /drivers/gpu/drm/exynos/exynos_drm_ipp.c | |
parent | 7259c3d6aaf2f0925c034c11a3aca7e9dad52550 (diff) | |
download | linux-0ca824c7df2f2d79933ea66adb2b3dfabb85f283.tar.xz |
drm/exynos: remove needless error handling to property.
This patch removes property error handling. because property couldn't be NULL.
Signed-off-by: Eunchul Kim <chulspro.kim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_ipp.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_ipp.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.c b/drivers/gpu/drm/exynos/exynos_drm_ipp.c index ba45f9a7a740..cac94fee9635 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_ipp.c +++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.c @@ -1487,11 +1487,6 @@ void ipp_sched_cmd(struct work_struct *work) mutex_lock(&c_node->cmd_lock); property = &c_node->property; - if (!property) { - DRM_ERROR("failed to get property:prop_id[%d]\n", - c_node->property.prop_id); - goto err_unlock; - } switch (cmd_work->ctrl) { case IPP_CTRL_PLAY: |