diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-05-08 14:43:39 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-05-10 01:14:27 +0200 |
commit | 1c1c071b88c52ec8c580328062df28a6a091b7a0 (patch) | |
tree | dcca156c386588308b14003ab24a64bbcbb346de /src/include/device | |
parent | 293445ae1f93d38b86b1c1a3c9ee40ec96a36fac (diff) | |
download | coreboot-1c1c071b88c52ec8c580328062df28a6a091b7a0.tar.xz |
drivers/storage: Remove set_control_reg
Remove unused field in generic SD/MMC controller data structure.
TEST=Build and run on Galileo Gen2
Change-Id: I7169dca07509a6f2513d62b593742daf764010b2
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/19629
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/sd_mmc_ctrlr.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/device/sd_mmc_ctrlr.h b/src/include/device/sd_mmc_ctrlr.h index c3b4f60d08..b7541da12f 100644 --- a/src/include/device/sd_mmc_ctrlr.h +++ b/src/include/device/sd_mmc_ctrlr.h @@ -127,7 +127,6 @@ struct sd_mmc_ctrlr { int (*send_cmd)(struct sd_mmc_ctrlr *ctrlr, struct mmc_command *cmd, struct mmc_data *data); void (*set_ios)(struct sd_mmc_ctrlr *ctrlr); - void (*set_control_reg)(struct sd_mmc_ctrlr *ctrlr); void (*tuning_start)(struct sd_mmc_ctrlr *ctrlr, int retune); int (*is_tuning_complete)(struct sd_mmc_ctrlr *ctrlr, int *successful); |