diff options
| author | Sam Protsenko <[email protected]> | 2024-08-07 22:14:08 -0500 |
|---|---|---|
| committer | Minkyu Kang <[email protected]> | 2024-08-19 16:09:06 +0900 |
| commit | 96ea89000f3f2b395daeef9401dd3fab6d7c62b7 (patch) | |
| tree | be7bb98fb2916d9dd4ed339ccd0ecca976fb12df /include | |
| parent | 4302e6564791b99c755f2cd76c8495c222357832 (diff) | |
mmc: dw_mmc: Move struct idmac to dw_mmc.c
struct idmac is only used in dw_mmc.c, so move it there from dwmmc.h to
avoid cluttering the interface in the header.
No functional change.
Signed-off-by: Sam Protsenko <[email protected]>
Reviewed-by: Quentin Schulz <[email protected]>
Signed-off-by: Minkyu Kang <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/dwmmc.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/dwmmc.h b/include/dwmmc.h index 39024fb38aa..7e4acf096dc 100644 --- a/include/dwmmc.h +++ b/include/dwmmc.h @@ -198,13 +198,6 @@ struct dwmci_host { bool fifo_mode; }; -struct dwmci_idmac { - u32 flags; - u32 cnt; - u32 addr; - u32 next_addr; -} __aligned(ARCH_DMA_MINALIGN); - static inline void dwmci_writel(struct dwmci_host *host, int reg, u32 val) { writel(val, host->ioaddr + reg); |
