diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2016-06-29 16:24:17 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-07-25 11:34:34 +0300 |
commit | 28da35899e6075ad0376f977c23dcefb815e77db (patch) | |
tree | 8d8b9b142b6f2cf2109577e15940b311ad2d4cd2 /drivers/mmc/host/sdhci.h | |
parent | 8cb851a4da64aa838c3cb4fa76ad130ace2b5a98 (diff) | |
download | linux-28da35899e6075ad0376f977c23dcefb815e77db.tar.xz |
mmc: sdhci: Tidy caps variables in sdhci_setup_host()
In preparation for adding a function to read the capability registers.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/sdhci.h')
-rw-r--r-- | drivers/mmc/host/sdhci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index 419911f107d3..8696c9365ef2 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h @@ -490,8 +490,8 @@ struct sdhci_host { struct timer_list timer; /* Timer for timeouts */ - u32 caps; /* Alternative CAPABILITY_0 */ - u32 caps1; /* Alternative CAPABILITY_1 */ + u32 caps; /* CAPABILITY_0 */ + u32 caps1; /* CAPABILITY_1 */ unsigned int ocr_avail_sdio; /* OCR bit masks */ unsigned int ocr_avail_sd; |