PCI: tegra: make const array err_msg static
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Tue, 4 May 2021 17:18:04 +0000 (19:18 +0200)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Thu, 5 Aug 2021 10:42:07 +0000 (11:42 +0100)
commitfd44e8efccd4de1764d195958bcac3242c921ed7
tree32fbeb84f796e1a69344260165ff309e70a3466a
parent804b2b6f2a95d924f52c80c80a01b8fea73efb1e
PCI: tegra: make const array err_msg static

Don't populate the array err_msg on the stack but instead make it
static. Makes the object code smaller by 64 bytes.

While at it, add a missing const, as reported by checkpatch.

Compiled with gcc 11.0.1

Before:
$ size drivers/pci/controller/pci-tegra.o
   text    data     bss     dec     hex filename
  25623    2844      32   28499    6f53 drivers/pci/controller/pci-tegra.o

After:
$ size drivers/pci/controller/pci-tegra.o
   text    data     bss     dec     hex filename
  25559    2844      32   28435    6f13 drivers/pci/controller/pci-tegra.o

Link: https://lore.kernel.org/r/5f3f35296b944b94546cc7d1e9cc6186484620d8.1620148539.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: Vidya Sagar <vidyas@nvidia.com>
drivers/pci/controller/pci-tegra.c