diff options
| author | Toomas Soome <tsoome@me.com> | 2018-10-15 22:13:49 +0300 |
|---|---|---|
| committer | Dan McDonald <danmcd@joyent.com> | 2018-11-26 11:11:27 -0500 |
| commit | 5e1743f0d6a1d79ccc247d50153ad830fa07768b (patch) | |
| tree | b3d1fac7244691fbbca058b21a4af814c43ecc53 /usr/src/uts/common/io/fibre-channel | |
| parent | a239e970c64e3cf36327bef7b63193d0e6a25544 (diff) | |
| download | illumos-gate-5e1743f0d6a1d79ccc247d50153ad830fa07768b.tar.gz | |
9903 qinfo: add typed members
Reviewed by: Dan McDonald <danmcd@joyent.com>
Reviewed by: Hans Rosenfeld <hans.rosenfeld@joyent.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/uts/common/io/fibre-channel')
| -rw-r--r-- | usr/src/uts/common/io/fibre-channel/ulp/fcip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/io/fibre-channel/ulp/fcip.c b/usr/src/uts/common/io/fibre-channel/ulp/fcip.c index b4aaef3437..5989490929 100644 --- a/usr/src/uts/common/io/fibre-channel/ulp/fcip.c +++ b/usr/src/uts/common/io/fibre-channel/ulp/fcip.c @@ -145,7 +145,7 @@ static void fcip_proto(queue_t *, mblk_t *); static void fcip_ioctl(queue_t *, mblk_t *); static int fcip_open(queue_t *wq, dev_t *devp, int flag, int sflag, cred_t *credp); -static int fcip_close(queue_t *rq, int flag, int otyp, cred_t *credp); +static int fcip_close(queue_t *rq, int flag, cred_t *credp); static int fcip_start(queue_t *wq, mblk_t *mp, struct fcip *fptr, struct fcip_dest *fdestp, int flags); static void fcip_sendup(struct fcip *fptr, mblk_t *mp, @@ -3571,7 +3571,7 @@ done: */ /* ARGSUSED */ static int -fcip_close(queue_t *rq, int flag, int otyp, cred_t *credp) +fcip_close(queue_t *rq, int flag, cred_t *credp) { struct fcipstr *slp; struct fcipstr **prevslp; |
