Lines Matching +full:post +full:-
1 /* SPDX-License-Identifier: GPL-2.0-only */
140 * mmc_claim_host - exclusively claim a host
155 * mmc_pre_req - Prepare for a new request
165 if (host->ops->pre_req) in mmc_pre_req()
166 host->ops->pre_req(host, mrq); in mmc_pre_req()
170 * mmc_post_req - Post process a completed request
171 * @host: MMC host to post process command
172 * @mrq: MMC request to post process for
175 * Let the host post process a completed request. Post processing of
181 if (host->ops->post_req) in mmc_post_req()
182 host->ops->post_req(host, mrq, err); in mmc_post_req()
187 if (host->bus_ops->cache_enabled) in mmc_cache_enabled()
188 return host->bus_ops->cache_enabled(host); in mmc_cache_enabled()
195 if (host->bus_ops->flush_cache) in mmc_flush_cache()
196 return host->bus_ops->flush_cache(host); in mmc_flush_cache()