From: Wei Yongjun Date: Tue, 23 Jan 2018 02:10:38 +0000 (+0000) Subject: net: aquantia: make symbol hw_atl_boards static X-Git-Tag: v4.16-rc1~123^2~79 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=e8a22b5f079449f1803d37ce2b5d09acaa68368d;p=linux.git net: aquantia: make symbol hw_atl_boards static Fixes the following sparse warning: drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c:50:34: warning: symbol 'hw_atl_boards' was not declared. Should it be static? Fixes: 4948293ff963 ("net: aquantia: Introduce new AQC devices and capabilities") Signed-off-by: Wei Yongjun Acked-by: Igor Russkikh Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c b/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c index 5cf3542a7e86..22889fc158f2 100644 --- a/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c +++ b/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c @@ -47,7 +47,7 @@ static const struct pci_device_id aq_pci_tbl[] = { {} }; -const struct aq_board_revision_s hw_atl_boards[] = { +static const struct aq_board_revision_s hw_atl_boards[] = { { AQ_DEVICE_ID_0001, AQ_HWREV_1, &hw_atl_ops_a0, &hw_atl_a0_caps_aqc107, }, { AQ_DEVICE_ID_D100, AQ_HWREV_1, &hw_atl_ops_a0, &hw_atl_a0_caps_aqc100, }, { AQ_DEVICE_ID_D107, AQ_HWREV_1, &hw_atl_ops_a0, &hw_atl_a0_caps_aqc107, },