diff options
author | Andrei Warkentin <andreiw@motorola.com> | 2011-04-11 16:13:41 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-05-24 21:01:05 -0400 |
commit | eaa02f751ff4f8abfc2e55a15c20a5a274244418 (patch) | |
tree | c521e84176e140acdc03926683b525250ceee777 /include/linux | |
parent | 853c6cac0dc0d9d330deb5b48c19eebafaed1841 (diff) | |
download | kernel_samsung_smdk4412-eaa02f751ff4f8abfc2e55a15c20a5a274244418.zip kernel_samsung_smdk4412-eaa02f751ff4f8abfc2e55a15c20a5a274244418.tar.gz kernel_samsung_smdk4412-eaa02f751ff4f8abfc2e55a15c20a5a274244418.tar.bz2 |
mmc: core: Rename erase_timeout to cmd_timeout_ms.
Renames erase_timeout to cmd_timeout_ms inside struct mmc_command.
First step to making host honor timeouts for non-data-transfer
commands. Cleans up erase timeout code.
Signed-off-by: Andrei Warkentin <andreiw@motorola.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mmc/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmc/core.h b/include/linux/mmc/core.h index 07f27af..811e96e 100644 --- a/include/linux/mmc/core.h +++ b/include/linux/mmc/core.h @@ -92,7 +92,7 @@ struct mmc_command { * actively failing requests */ - unsigned int erase_timeout; /* in milliseconds */ + unsigned int cmd_timeout_ms; /* in milliseconds */ struct mmc_data *data; /* data segment associated with cmd */ struct mmc_request *mrq; /* associated request */ |