1 /* 2 * osal_cdev_adapter.h 3 * 4 * osal driver 5 * 6 * Copyright (c) 2021 Huawei Device Co., Ltd. 7 * 8 * This software is licensed under the terms of the GNU General Public 9 * License version 2, as published by the Free Software Foundation, and 10 * may be copied, distributed, and modified under those terms. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 */ 18 19 #ifndef OSAL_CDEV_ADAPTER_DEF_H 20 #define OSAL_CDEV_ADAPTER_DEF_H 21 22 #include <linux/ioctl.h> 23 #include <linux/kernel.h> 24 #include <linux/poll.h> 25 #include <linux/fs.h> 26 #include <linux/cdev.h> 27 28 #endif /* OSAL_CDEV_ADAPTER_DEF_H */ 29 30