Files
linux/drivers/crypto/intel/qat/qat_common/adf_gen4_config.h
Suman Kumar Chakraborty 7db5572645 crypto: qat - expose configuration functions
The functions related to compression and crypto configurations were
previously declared static, restricting the visibility to the defining
source file. Remove the static qualifier, allowing it to be used in other
files as needed. This is necessary for sharing this configuration functions
with other QAT generations.

Signed-off-by: Suman Kumar Chakraborty <suman.kumar.chakraborty@intel.com>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2025-05-05 18:20:44 +08:00

15 lines
473 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/* Copyright(c) 2023 Intel Corporation */
#ifndef ADF_GEN4_CONFIG_H_
#define ADF_GEN4_CONFIG_H_
#include "adf_accel_devices.h"
int adf_gen4_dev_config(struct adf_accel_dev *accel_dev);
int adf_gen4_cfg_dev_init(struct adf_accel_dev *accel_dev);
int adf_crypto_dev_config(struct adf_accel_dev *accel_dev);
int adf_comp_dev_config(struct adf_accel_dev *accel_dev);
int adf_no_dev_config(struct adf_accel_dev *accel_dev);
#endif