mirror of https://gitee.com/openkylin/linux.git
spi: pl022: constify amba_id
amba_id are not supposed to change at runtime. All functions working with const amba_id. So mark the non-const structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
5771a8c088
commit
5b8d5ad230
|
@ -2429,7 +2429,7 @@ static struct vendor_data vendor_lsi = {
|
||||||
.internal_cs_ctrl = true,
|
.internal_cs_ctrl = true,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct amba_id pl022_ids[] = {
|
static const struct amba_id pl022_ids[] = {
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* ARM PL022 variant, this has a 16bit wide
|
* ARM PL022 variant, this has a 16bit wide
|
||||||
|
|
Loading…
Reference in New Issue