]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit
phy: xgene: make array serdes_reg static const, makes object smaller
authorColin Ian King <colin.king@canonical.com>
Fri, 6 Sep 2019 12:49:44 +0000 (13:49 +0100)
committerKishon Vijay Abraham I <kishon@ti.com>
Wed, 23 Oct 2019 07:50:26 +0000 (13:20 +0530)
commitfbf6a7a4c976668ce5fd5de29e48772b146eabd1
treef81e34a83f5167c15575da66487612804f5feefd
parent54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c
phy: xgene: make array serdes_reg static const, makes object smaller

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

Before:
   text    data     bss     dec     hex filename
  23875    6232      64   30171    75db drivers/phy/phy-xgene.o

After:
   text    data     bss     dec     hex filename
  23551    6328      64   29943    74f7 drivers/phy/phy-xgene.o

(gcc version 9.2.1, amd64)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/phy/phy-xgene.c