bus/fslmc: remove unused device count

Reported by clang 13.
This patch removes the device_count variable from the rte_fslmc_scan
function within the fslmc bus driver as it is an unused but set variable.

Bugzilla ID: 881
Fixes: 828d51d8fc ("bus/fslmc: refactor scan and probe functions")
Cc: stable@dpdk.org

Reported-by: Liang Longfeng <longfengx.liang@intel.com>
Signed-off-by: Conor Walsh <conor.walsh@intel.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Conor Walsh 2021-11-15 17:58:51 +00:00 committed by David Marchand
parent 6dfcdf8fd5
commit 54d109b564

View File

@ -315,7 +315,6 @@ static int
rte_fslmc_scan(void)
{
int ret;
int device_count = 0;
char fslmc_dirpath[PATH_MAX];
DIR *dir;
struct dirent *entry;
@ -349,7 +348,6 @@ rte_fslmc_scan(void)
/* Error in parsing directory - exit gracefully */
goto scan_fail_cleanup;
}
device_count += 1;
}
closedir(dir);