diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2004-02-07 03:42:17 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2004-02-07 03:42:17 +0000 |
| commit | cc330eadff2a39f891fd85fe3282fedd4aa03113 (patch) | |
| tree | 3190a2237b4e78ca6ff44dd7756869361597bf58 | |
| parent | 87ab7d39a43064535ba59f40accffdcdccf9a298 (diff) | |
Notes
| -rw-r--r-- | sys/dev/isp/isp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index 40dbf931602b..060a1060f3d3 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -3461,6 +3461,15 @@ isp_control(struct ispsoftc *isp, ispctl_t ctl, void *arg) } break; + + case ISPCTL_GET_PDB: + if (IS_FC(isp) && arg) { + int id = *((int *)arg); + isp_pdb_t *pdb = arg; + return (isp_getpdb(isp, id, pdb)); + } + break; + case ISPCTL_RUN_MBOXCMD: isp_mboxcmd(isp, arg, MBLOGALL); |
