diff options
author | Kyungmin Park <kyungmin.park@samsung.com> | 2011-10-14 01:15:48 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-10-26 16:32:26 -0400 |
commit | d9ddd62943ee07a75d0428ffcf52f1a747a28c39 (patch) | |
tree | e4fb8b0b2ba2fe39bf725762b2c04441f1adf3b8 /drivers/mmc/card/queue.c | |
parent | 4e0a5adf46ee7810af2e1b7e4e8c2a298652618e (diff) |
mmc: core: mmc sanitize feature support for v4.5
In the v4.5, there's no secure erase & trim support.
Instead it supports the sanitize feature.
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/card/queue.c')
-rw-r--r-- | drivers/mmc/card/queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c index fed290ecc242..dcad59cbfef1 100644 --- a/drivers/mmc/card/queue.c +++ b/drivers/mmc/card/queue.c | |||
@@ -140,7 +140,7 @@ static void mmc_queue_setup_discard(struct request_queue *q, | |||
140 | /* granularity must not be greater than max. discard */ | 140 | /* granularity must not be greater than max. discard */ |
141 | if (card->pref_erase > max_discard) | 141 | if (card->pref_erase > max_discard) |
142 | q->limits.discard_granularity = 0; | 142 | q->limits.discard_granularity = 0; |
143 | if (mmc_can_secure_erase_trim(card)) | 143 | if (mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card)) |
144 | queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q); | 144 | queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q); |
145 | } | 145 | } |
146 | 146 | ||