From: Arvind Yadav Date: Wed, 23 Aug 2017 16:47:58 +0000 (+0530) Subject: serial: pl010: constify amba_id X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5337e5490fa2e6056849228335f0fb168f3b35bc;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git serial: pl010: 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/amba-pl010.c b/drivers/tty/serial/amba-pl010.c index 24180adb1cbb..9ec4b8d2879f 100644 --- a/drivers/tty/serial/amba-pl010.c +++ b/drivers/tty/serial/amba-pl010.c @@ -814,7 +814,7 @@ static int pl010_resume(struct device *dev) static SIMPLE_DEV_PM_OPS(pl010_dev_pm_ops, pl010_suspend, pl010_resume); -static struct amba_id pl010_ids[] = { +static const struct amba_id pl010_ids[] = { { .id = 0x00041010, .mask = 0x000fffff,