summaryrefslogtreecommitdiffstats
path: root/sys/dev/fxp
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-10-20 20:42:25 +0000
committerphk <phk@FreeBSD.org>2002-10-20 20:42:25 +0000
commit12498a44e8c16d95cbc864868ba0699d0ab3387f (patch)
tree1d23e99ca663106b2fe68847ba5b8bb5dcfa4a99 /sys/dev/fxp
parent681ea2147c348cd1422ab4486c07865bf25ff9b2 (diff)
downloadFreeBSD-src-12498a44e8c16d95cbc864868ba0699d0ab3387f.zip
FreeBSD-src-12498a44e8c16d95cbc864868ba0699d0ab3387f.tar.gz
'&' is not needed to pointerize functions.
Spotted by: FlexeLint
Diffstat (limited to 'sys/dev/fxp')
-rw-r--r--sys/dev/fxp/if_fxp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c
index 9e88652..f1588c9 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");
/*
OpenPOWER on IntegriCloud