Commit edfd39f0 authored by Stefan Agner's avatar Stefan Agner Committed by Lorenzo Pieralisi

PCI: dwc: layerscape: Constify driver data

Constify driver data since they do not get changed at runtime.
Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
parent 3f7cceea
...@@ -222,12 +222,12 @@ static const struct dw_pcie_ops dw_ls_pcie_ops = { ...@@ -222,12 +222,12 @@ static const struct dw_pcie_ops dw_ls_pcie_ops = {
.link_up = ls_pcie_link_up, .link_up = ls_pcie_link_up,
}; };
static struct ls_pcie_drvdata ls1021_drvdata = { static const struct ls_pcie_drvdata ls1021_drvdata = {
.ops = &ls1021_pcie_host_ops, .ops = &ls1021_pcie_host_ops,
.dw_pcie_ops = &dw_ls1021_pcie_ops, .dw_pcie_ops = &dw_ls1021_pcie_ops,
}; };
static struct ls_pcie_drvdata ls1043_drvdata = { static const struct ls_pcie_drvdata ls1043_drvdata = {
.lut_offset = 0x10000, .lut_offset = 0x10000,
.ltssm_shift = 24, .ltssm_shift = 24,
.lut_dbg = 0x7fc, .lut_dbg = 0x7fc,
...@@ -235,7 +235,7 @@ static struct ls_pcie_drvdata ls1043_drvdata = { ...@@ -235,7 +235,7 @@ static struct ls_pcie_drvdata ls1043_drvdata = {
.dw_pcie_ops = &dw_ls_pcie_ops, .dw_pcie_ops = &dw_ls_pcie_ops,
}; };
static struct ls_pcie_drvdata ls1046_drvdata = { static const struct ls_pcie_drvdata ls1046_drvdata = {
.lut_offset = 0x80000, .lut_offset = 0x80000,
.ltssm_shift = 24, .ltssm_shift = 24,
.lut_dbg = 0x407fc, .lut_dbg = 0x407fc,
...@@ -243,7 +243,7 @@ static struct ls_pcie_drvdata ls1046_drvdata = { ...@@ -243,7 +243,7 @@ static struct ls_pcie_drvdata ls1046_drvdata = {
.dw_pcie_ops = &dw_ls_pcie_ops, .dw_pcie_ops = &dw_ls_pcie_ops,
}; };
static struct ls_pcie_drvdata ls2080_drvdata = { static const struct ls_pcie_drvdata ls2080_drvdata = {
.lut_offset = 0x80000, .lut_offset = 0x80000,
.ltssm_shift = 0, .ltssm_shift = 0,
.lut_dbg = 0x7fc, .lut_dbg = 0x7fc,
...@@ -251,7 +251,7 @@ static struct ls_pcie_drvdata ls2080_drvdata = { ...@@ -251,7 +251,7 @@ static struct ls_pcie_drvdata ls2080_drvdata = {
.dw_pcie_ops = &dw_ls_pcie_ops, .dw_pcie_ops = &dw_ls_pcie_ops,
}; };
static struct ls_pcie_drvdata ls2088_drvdata = { static const struct ls_pcie_drvdata ls2088_drvdata = {
.lut_offset = 0x80000, .lut_offset = 0x80000,
.ltssm_shift = 0, .ltssm_shift = 0,
.lut_dbg = 0x407fc, .lut_dbg = 0x407fc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment