Module Name: src Committed By: maxv Date: Sat Feb 8 07:19:09 UTC 2020
Modified Files: src/sys/dev/pci: if_aq.c Log Message: constify To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/pci/if_aq.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/if_aq.c diff -u src/sys/dev/pci/if_aq.c:1.7 src/sys/dev/pci/if_aq.c:1.8 --- src/sys/dev/pci/if_aq.c:1.7 Tue Feb 4 05:44:14 2020 +++ src/sys/dev/pci/if_aq.c Sat Feb 8 07:19:09 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: if_aq.c,v 1.7 2020/02/04 05:44:14 thorpej Exp $ */ +/* $NetBSD: if_aq.c,v 1.8 2020/02/08 07:19:09 maxv Exp $ */ /** * aQuantia Corporation Network Driver @@ -62,7 +62,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.7 2020/02/04 05:44:14 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.8 2020/02/08 07:19:09 maxv Exp $"); #ifdef _KERNEL_OPT #include "opt_if_aq.h" @@ -973,7 +973,7 @@ struct aq_softc { kmutex_t sc_mutex; kmutex_t sc_mpi_mutex; - struct aq_firmware_ops *sc_fw_ops; + const struct aq_firmware_ops *sc_fw_ops; uint64_t sc_fw_caps; enum aq_media_type sc_media_type; aq_link_speed_t sc_available_rates; @@ -1113,7 +1113,7 @@ static int fw2x_get_stats(struct aq_soft static int fw2x_get_temperature(struct aq_softc *, uint32_t *); #endif -static struct aq_firmware_ops aq_fw1x_ops = { +static const struct aq_firmware_ops aq_fw1x_ops = { .reset = fw1x_reset, .set_mode = fw1x_set_mode, .get_mode = fw1x_get_mode, @@ -1123,7 +1123,7 @@ static struct aq_firmware_ops aq_fw1x_op #endif }; -static struct aq_firmware_ops aq_fw2x_ops = { +static const struct aq_firmware_ops aq_fw2x_ops = { .reset = fw2x_reset, .set_mode = fw2x_set_mode, .get_mode = fw2x_get_mode,