1 /* 2 * osal_io.h 3 * 4 * osal driver 5 * 6 * Copyright (c) 2020-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_LINUX_IO_ADAPTER_H 20 #define OSAL_LINUX_IO_ADAPTER_H 21 22 #include <linux/io.h> 23 #include <linux/kernel.h> 24 25 #endif /* OSAL_LINUX_IO_ADAPTER_H */ 26 27