The code does not really use dpu_hw_blk fields, so drop them, making dpu_hw_blk empty structure. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://lore.kernel.org/r/20210515190909.1809050-5-dmitry.baryshkov@linaro.org Reviewed-by: Abhinav Kumar <abhinavk@codeaurora.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Rob Clark <robdclark@chromium.org>
25 lines
487 B
C
25 lines
487 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DPU_HW_BLK_H
|
|
#define _DPU_HW_BLK_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/list.h>
|
|
|
|
struct dpu_hw_blk;
|
|
|
|
|
|
/**
|
|
* struct dpu_hw_blk - definition of hardware block object
|
|
* @list: list of hardware blocks
|
|
* @type: hardware block type
|
|
* @id: instance id
|
|
* @refcount: reference/usage count
|
|
*/
|
|
struct dpu_hw_blk {
|
|
/* opaque */
|
|
};
|
|
|
|
#endif /*_DPU_HW_BLK_H */
|