diff options
| author | Adrian Hunter <[email protected]> | 2014-11-04 12:42:39 +0200 |
|---|---|---|
| committer | Ulf Hansson <[email protected]> | 2014-11-10 12:40:50 +0100 |
| commit | 4efaa6fbe1fd5e86ab2fee4cdcfc6873dab60716 (patch) | |
| tree | adae970906093fd2dfe9c46abfce9294880841ac /include/linux/mmc | |
| parent | 08621b18a15ee21601ad8133565d283610b493d8 (diff) | |
mmc: sdhci: Rename adma_desc to adma_table
In preparation for 64-bit ADMA, rename adma_desc to
adma_table. That is because members will be added
for descriptor size and table size, so using adma_desc
(which is the table) is confusing.
Signed-off-by: Adrian Hunter <[email protected]>
Signed-off-by: Ulf Hansson <[email protected]>
Diffstat (limited to 'include/linux/mmc')
| -rw-r--r-- | include/linux/mmc/sdhci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index dba793e3a331..76e04324cc33 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h @@ -155,7 +155,7 @@ struct sdhci_host { int sg_count; /* Mapped sg entries */ - u8 *adma_desc; /* ADMA descriptor table */ + u8 *adma_table; /* ADMA descriptor table */ u8 *align_buffer; /* Bounce buffer */ dma_addr_t adma_addr; /* Mapped ADMA descr. table */ |