From 858b84f550e0dafa4025b2bf626edb0875740338 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sun, 20 Oct 2002 20:42:25 +0000 Subject: [PATCH] '&' is not needed to pointerize functions. Spotted by: FlexeLint --- sys/dev/fxp/if_fxp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c index 9e88652cd3c..f1588c9d8ab 100644 --- a/sys/dev/fxp/if_fxp.c +++ b/sys/dev/fxp/if_fxp.c @@ -498,11 +498,11 @@ fxp_attach(device_t dev) goto fail; SYSCTL_ADD_PROC(&sc->sysctl_ctx, SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO, "int_delay", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_PRISON, - &sc->tunable_int_delay, 0, &sysctl_hw_fxp_int_delay, "I", + &sc->tunable_int_delay, 0, sysctl_hw_fxp_int_delay, "I", "FXP driver receive interrupt microcode bundling delay"); SYSCTL_ADD_PROC(&sc->sysctl_ctx, SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO, "bundle_max", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_PRISON, - &sc->tunable_bundle_max, 0, &sysctl_hw_fxp_bundle_max, "I", + &sc->tunable_bundle_max, 0, sysctl_hw_fxp_bundle_max, "I", "FXP driver receive interrupt microcode bundle size limit"); /*