aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJulia Lawall <julia.lawall@lip6.fr>2015-11-14 11:06:57 +0100
committerDavid S. Miller <davem@davemloft.net>2015-11-16 15:07:29 -0500
commitc300366b6b978fcb84f8eeb6205e5980cc0c40c3 (patch)
tree210974d7f96959e57da20fece3d046bfc311ba31 /drivers
parentnet: cavium: liquidio: constify pci_error_handlers structures (diff)
downloadlinux-dev-c300366b6b978fcb84f8eeb6205e5980cc0c40c3.tar.xz
linux-dev-c300366b6b978fcb84f8eeb6205e5980cc0c40c3.zip
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')
-rw-r--r--drivers/net/ethernet/sfc/efx.c2
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,