crypto: qat - remove unused and redundant pointer vf_info
The pointer vf_info is being assigned but never read, it is redundant
and therefore can be removed.
Cleans up clang warning: Value stored to 'vf_info' is never read
Fixes: ed8ccaef52
("crypto: qat - Add support for SRIOV")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
745952aeb5
commit
9c290c507c
|
@ -228,11 +228,8 @@ int adf_devmgr_add_dev(struct adf_accel_dev *accel_dev,
|
||||||
list_add_tail(&map->list, &vfs_table);
|
list_add_tail(&map->list, &vfs_table);
|
||||||
} else if (accel_dev->is_vf && pf) {
|
} else if (accel_dev->is_vf && pf) {
|
||||||
/* VF on host */
|
/* VF on host */
|
||||||
struct adf_accel_vf_info *vf_info;
|
|
||||||
struct vf_id_map *map;
|
struct vf_id_map *map;
|
||||||
|
|
||||||
vf_info = pf->pf.vf_info + adf_get_vf_id(accel_dev);
|
|
||||||
|
|
||||||
map = adf_find_vf(adf_get_vf_num(accel_dev));
|
map = adf_find_vf(adf_get_vf_num(accel_dev));
|
||||||
if (map) {
|
if (map) {
|
||||||
struct vf_id_map *next;
|
struct vf_id_map *next;
|
||||||
|
|
Loading…
Reference in New Issue