xref: /haiku/src/add-ons/kernel/drivers/disk/mmc/mmc_disk.h (revision 9a2911ca8c155932fdd097fbe6c596ed2755305b)
1 /*
2  * Copyright 2018 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		B Krishnan Iyer, krishnaniyer97@gmail.com
7  */
8 #ifndef _MMC_DISK_H
9 #define _MMC_DISK_H
10 
11 
12 #include <device_manager.h>
13 #include <KernelExport.h>
14 
15 
16 #define SDHCI_DEVICE_TYPE_ITEM "sdhci/type"
17 
18 typedef struct {
19 	device_node* 	node;
20 	status_t 		media_status;
21 } mmc_disk_driver_info;
22 
23 
24 #endif /*_MMC_DISK_H*/