mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
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>
15 lines
473 B
C
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
|