mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-12 17:26:47 -04:00
net/liquidio: Delete non-working LIQUIDIO_PACKAGE check
Size of LIQUIDIO_PACKAGE is 0 and it means that checks of package
version never worked, delete dead code.
Fixes: 3258124534 ("liquidio: Consolidate common functionality")
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
b6334be64d
commit
d4bb38156f
@@ -25,7 +25,6 @@
|
||||
|
||||
#include "octeon_config.h"
|
||||
|
||||
#define LIQUIDIO_PACKAGE ""
|
||||
#define LIQUIDIO_BASE_MAJOR_VERSION 1
|
||||
#define LIQUIDIO_BASE_MINOR_VERSION 7
|
||||
#define LIQUIDIO_BASE_MICRO_VERSION 2
|
||||
|
||||
@@ -840,17 +840,11 @@ int octeon_download_firmware(struct octeon_device *oct, const u8 *data,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (strncmp(LIQUIDIO_PACKAGE, h->version, strlen(LIQUIDIO_PACKAGE))) {
|
||||
dev_err(&oct->pci_dev->dev, "Unmatched firmware package type. Expected %s, got %s.\n",
|
||||
LIQUIDIO_PACKAGE, h->version);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (memcmp(LIQUIDIO_BASE_VERSION, h->version + strlen(LIQUIDIO_PACKAGE),
|
||||
if (memcmp(LIQUIDIO_BASE_VERSION, h->version,
|
||||
strlen(LIQUIDIO_BASE_VERSION))) {
|
||||
dev_err(&oct->pci_dev->dev, "Unmatched firmware version. Expected %s.x, got %s.\n",
|
||||
LIQUIDIO_BASE_VERSION,
|
||||
h->version + strlen(LIQUIDIO_PACKAGE));
|
||||
h->version);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user