| OLD | NEW |
| 1 /* | 1 /* |
| 2 * linux/include/linux/mmc/sdhci.h - Secure Digital Host Controller Interface | 2 * linux/include/linux/mmc/sdhci.h - Secure Digital Host Controller Interface |
| 3 * | 3 * |
| 4 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved. | 4 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved. |
| 5 * | 5 * |
| 6 * This program is free software; you can redistribute it and/or modify | 6 * This program is free software; you can redistribute it and/or modify |
| 7 * it under the terms of the GNU General Public License as published by | 7 * it under the terms of the GNU General Public License as published by |
| 8 * the Free Software Foundation; either version 2 of the License, or (at | 8 * the Free Software Foundation; either version 2 of the License, or (at |
| 9 * your option) any later version. | 9 * your option) any later version. |
| 10 */ | 10 */ |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 dma_addr_t adma_addr; /* Mapped ADMA descr. table */ | 134 dma_addr_t adma_addr; /* Mapped ADMA descr. table */ |
| 135 dma_addr_t align_addr; /* Mapped bounce buffer */ | 135 dma_addr_t align_addr; /* Mapped bounce buffer */ |
| 136 | 136 |
| 137 struct tasklet_struct card_tasklet; /* Tasklet structures */ | 137 struct tasklet_struct card_tasklet; /* Tasklet structures */ |
| 138 struct tasklet_struct finish_tasklet; | 138 struct tasklet_struct finish_tasklet; |
| 139 | 139 |
| 140 struct timer_list timer; /* Timer for timeouts */ | 140 struct timer_list timer; /* Timer for timeouts */ |
| 141 | 141 |
| 142 unsigned int caps; /* Alternative capabilities */ | 142 unsigned int caps; /* Alternative capabilities */ |
| 143 | 143 |
| 144 unsigned int save_intmask; /* Store original intmask */ |
| 145 |
| 144 unsigned long private[0] ____cacheline_aligned; | 146 unsigned long private[0] ____cacheline_aligned; |
| 145 }; | 147 }; |
| 146 #endif /* __SDHCI_H */ | 148 #endif /* __SDHCI_H */ |
| OLD | NEW |