Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 985c293d authored by Andrzej Hajda's avatar Andrzej Hajda Committed by Inki Dae
Browse files

drm/exynos/ipp: remove unused field in command node



Since command node have file pointer dev field became useless.

Signed-off-by: default avatarAndrzej Hajda <a.hajda@samsung.com>
Reviewed-by: default avatarJoonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent 21a825ee
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -444,7 +444,6 @@ int exynos_drm_ipp_set_property(struct drm_device *drm_dev, void *data,
		property->prop_id, property->cmd, (int)ippdrv);
		property->prop_id, property->cmd, (int)ippdrv);


	/* stored property information and ippdrv in private data */
	/* stored property information and ippdrv in private data */
	c_node->dev = dev;
	c_node->property = *property;
	c_node->property = *property;
	c_node->state = IPP_STATE_IDLE;
	c_node->state = IPP_STATE_IDLE;
	c_node->filp = file;
	c_node->filp = file;
+0 −2
Original line number Original line Diff line number Diff line
@@ -48,7 +48,6 @@ struct drm_exynos_ipp_cmd_work {
/*
/*
 * A structure of command node.
 * A structure of command node.
 *
 *
 * @dev: IPP device.
 * @list: list head to command queue information.
 * @list: list head to command queue information.
 * @event_list: list head of event.
 * @event_list: list head of event.
 * @mem_list: list head to source,destination memory queue information.
 * @mem_list: list head to source,destination memory queue information.
@@ -65,7 +64,6 @@ struct drm_exynos_ipp_cmd_work {
 * @filp: associated file pointer.
 * @filp: associated file pointer.
 */
 */
struct drm_exynos_ipp_cmd_node {
struct drm_exynos_ipp_cmd_node {
	struct device		*dev;
	struct list_head	list;
	struct list_head	list;
	struct list_head	event_list;
	struct list_head	event_list;
	struct list_head	mem_list[EXYNOS_DRM_OPS_MAX];
	struct list_head	mem_list[EXYNOS_DRM_OPS_MAX];