1 /* 2 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. 3 * 4 * HDF is dual licensed: you can use it either under the terms of 5 * the GPL, or the BSD license, at your option. 6 * See the LICENSE file in the root of this repository for complete details. 7 */ 8 9 #ifndef OSAL_H 10 #define OSAL_H 11 12 #include "hdf_base.h" 13 #include "hdf_dlist.h" 14 #include "hdf_log.h" 15 #include "osal_firmware.h" 16 #include "osal_irq.h" 17 #include "osal_mem.h" 18 #include "osal_mutex.h" 19 #include "osal_sem.h" 20 #include "osal_spinlock.h" 21 #include "osal_thread.h" 22 #include "osal_time.h" 23 #include "osal_timer.h" 24 25 #endif /* OSAL_H */ 26