// SPDX-License-Identifier: GPL-2.0-only /* * MMC crypto engine (inline encryption) support * * Copyright 2020 Google LLC */ #include <linux/blk-crypto.h> #include <linux/mmc/host.h> #include "core.h" #include "crypto.h" #include "queue.h" void mmc_crypto_set_initial_state(struct mmc_host *host) { … } void mmc_crypto_setup_queue(struct request_queue *q, struct mmc_host *host) { … } EXPORT_SYMBOL_GPL(…); void mmc_crypto_prepare_req(struct mmc_queue_req *mqrq) { … } EXPORT_SYMBOL_GPL(…);