diff options
author | Tariq Toukan <tariqt@mellanox.com> | 2019-07-05 18:30:12 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-06 02:29:19 +0300 |
commit | e2869fb2068be603b46cd62bc980b4765948c6ed (patch) | |
tree | 64a6b8504dc221094581959e71fc40fbf8422eb0 /include/linux/mlx5/accel.h | |
parent | c778dd31ac22f9027b7c8dfd62f421e245b49639 (diff) | |
download | linux-e2869fb2068be603b46cd62bc980b4765948c6ed.tar.xz |
net/mlx5: Kconfig, Better organize compilation flags
Always contain all acceleration functions declarations in
'accel' files, independent to the flags setting.
For this, introduce new flags CONFIG_FPGA_{IPSEC/TLS} and use stubs
where needed.
This obsoletes the need for stubs in 'fpga' files. Remove them.
Also use the new flags in Makefile, to decide whether to compile
TLS-specific or IPSEC-specific objects, or not.
Signed-off-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mlx5/accel.h')
-rw-r--r-- | include/linux/mlx5/accel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mlx5/accel.h b/include/linux/mlx5/accel.h index 70e7e5673ce9..5613e677a5f9 100644 --- a/include/linux/mlx5/accel.h +++ b/include/linux/mlx5/accel.h @@ -114,7 +114,7 @@ enum mlx5_accel_ipsec_cap { MLX5_ACCEL_IPSEC_CAP_TX_IV_IS_ESN = 1 << 7, }; -#ifdef CONFIG_MLX5_ACCEL +#ifdef CONFIG_MLX5_FPGA_IPSEC u32 mlx5_accel_ipsec_device_caps(struct mlx5_core_dev *mdev); |