diff options
| author | Vladimir Oltean <[email protected]> | 2021-09-17 15:11:23 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-03 14:40:56 -0400 |
| commit | a95f8ee911df637b5269c3c2a9a34302a5ec9eb2 (patch) | |
| tree | e572dc1b2c6681227a809645b9576c1c3c29c00c /cmd | |
| parent | f5164f6b255a16c856af91b21f432292b8ac8542 (diff) | |
pci: pci_header_show can be static
To avoid W=1 build warnings, declare this function as static, since it
is not used outside of this translation module.
Signed-off-by: Vladimir Oltean <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/pci.c b/cmd/pci.c index ebe7c0fc537..7febff497c5 100644 --- a/cmd/pci.c +++ b/cmd/pci.c @@ -223,7 +223,7 @@ static struct pci_reg_info regs_cardbus[] = { * * @dev: Bus+Device+Function number */ -void pci_header_show(struct udevice *dev) +static void pci_header_show(struct udevice *dev) { unsigned long class, header_type; |
