diff options
author | Julia Lawall <julia.lawall@lip6.fr> | 2015-11-14 13:06:57 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-11-16 23:07:29 +0300 |
commit | c300366b6b978fcb84f8eeb6205e5980cc0c40c3 (patch) | |
tree | 210974d7f96959e57da20fece3d046bfc311ba31 /drivers/net | |
parent | 166e23623e7482070aa124ad805f600672377019 (diff) | |
download | linux-c300366b6b978fcb84f8eeb6205e5980cc0c40c3.tar.xz |
sfc: constify pci_error_handlers structures
This pci_error_handlers structure is never modified, like all the other
pci_error_handlers structures, so declare it as const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/sfc/efx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c index d288f1c928de..a3c42a376741 100644 --- a/drivers/net/ethernet/sfc/efx.c +++ b/drivers/net/ethernet/sfc/efx.c @@ -3422,7 +3422,7 @@ out: * with our request for slot reset the mmio_enabled callback will never be * called, and the link_reset callback is not used by AER or EEH mechanisms. */ -static struct pci_error_handlers efx_err_handlers = { +static const struct pci_error_handlers efx_err_handlers = { .error_detected = efx_io_error_detected, .slot_reset = efx_io_slot_reset, .resume = efx_io_resume, |