GNU Linux-libre 5.19-rc6-gnu
[releases.git] / drivers / staging / rtl8723bs / include / drv_types_sdio.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /******************************************************************************
3  *
4  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
5  *
6  ******************************************************************************/
7 #ifndef __DRV_TYPES_SDIO_H__
8 #define __DRV_TYPES_SDIO_H__
9
10 /*  SDIO Header Files */
11         #include <linux/mmc/sdio_func.h>
12         #include <linux/mmc/sdio_ids.h>
13
14 struct sdio_data {
15         u8  func_number;
16
17         u8  tx_block_mode;
18         u8  rx_block_mode;
19         u32 block_transfer_len;
20
21         struct sdio_func         *func;
22         void *sys_sdio_irq_thd;
23 };
24
25 #endif