aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox/mlx4/main.c
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2017-08-23 18:17:39 +0530
committerDavid S. Miller <davem@davemloft.net>2017-08-24 12:33:31 -0700
commit3f2c5fb2d81656e79cdfbe78a5790c35993ed1ff (patch)
treeb7ccb502bac1e38db86c3c763c55fd13a8a4a9ff /drivers/net/ethernet/mellanox/mlx4/main.c
parentMerge branch 'xdp-more-work-on-xdp-tracepoints' (diff)
downloadlinux-dev-3f2c5fb2d81656e79cdfbe78a5790c35993ed1ff.tar.xz
linux-dev-3f2c5fb2d81656e79cdfbe78a5790c35993ed1ff.zip
net/mlx4_core: make mlx4_profile const
Make these const as they are only used in a copy operation. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Reviewed-by: Tariq Toukan <tariqt@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/mellanox/mlx4/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/main.c b/drivers/net/ethernet/mellanox/mlx4/main.c
index 9ea2b0db6229..8404e165eca4 100644
--- a/drivers/net/ethernet/mellanox/mlx4/main.c
+++ b/drivers/net/ethernet/mellanox/mlx4/main.c
@@ -121,7 +121,7 @@ static char mlx4_version[] =
DRV_NAME ": Mellanox ConnectX core driver v"
DRV_VERSION "\n";
-static struct mlx4_profile default_profile = {
+static const struct mlx4_profile default_profile = {
.num_qp = 1 << 18,
.num_srq = 1 << 16,
.rdmarc_per_qp = 1 << 4,
@@ -131,7 +131,7 @@ static struct mlx4_profile default_profile = {
.num_mtt = 1 << 20, /* It is really num mtt segements */
};
-static struct mlx4_profile low_mem_profile = {
+static const struct mlx4_profile low_mem_profile = {
.num_qp = 1 << 17,
.num_srq = 1 << 6,
.rdmarc_per_qp = 1 << 4,