drivers/mmc/core/sdio_bus.h

Source file repositories/reference/linux-study-clean/drivers/mmc/core/sdio_bus.h

File Facts

System
Linux kernel
Corpus path
drivers/mmc/core/sdio_bus.h
Extension
.h
Size
443 bytes
Lines
22
Domain
Driver Families
Bucket
drivers/mmc
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _MMC_CORE_SDIO_BUS_H
#define _MMC_CORE_SDIO_BUS_H

struct mmc_card;
struct sdio_func;

struct sdio_func *sdio_alloc_func(struct mmc_card *card);
int sdio_add_func(struct sdio_func *func);
void sdio_remove_func(struct sdio_func *func);

int sdio_register_bus(void);
void sdio_unregister_bus(void);

#endif

Annotation

Implementation Notes