1 /* 2 * storage_block_linux.c 3 * 4 * storage block adapter of linux 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 #include "mmc_block.h" 20 MmcBlockOsInit(struct MmcDevice * mmcDevice)21int32_t MmcBlockOsInit(struct MmcDevice *mmcDevice) 22 { 23 (void)mmcDevice; 24 return HDF_SUCCESS; 25 } 26 MmcBlockOsUninit(struct MmcDevice * mmcDevice)27void MmcBlockOsUninit(struct MmcDevice *mmcDevice) 28 { 29 (void)mmcDevice; 30 } 31