1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* Copyright (c) 2017-2018, The Linux Foundation. All rights reserved. 3 */ 4 5 #ifndef _DPU_HW_BLK_H 6 #define _DPU_HW_BLK_H 7 8 #include <linux/types.h> 9 #include <linux/list.h> 10 11 struct dpu_hw_blk; 12 13 14 /** 15 * struct dpu_hw_blk - definition of hardware block object 16 * @list: list of hardware blocks 17 * @type: hardware block type 18 * @id: instance id 19 * @refcount: reference/usage count 20 */ 21 struct dpu_hw_blk { 22 /* opaque */ 23 }; 24 25 #endif /*_DPU_HW_BLK_H */ 26