diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-04-15 17:47:40 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-04-15 17:47:40 +0000 |
| commit | c1087c13240442926a34afa825b4dd3993868549 (patch) | |
| tree | 85994764e94105ae219ec63eaed3030d8e9d12b5 /sys/dev/ppbus | |
| parent | 7e07ce2225a75a7d42ade04338c77b30b974113b (diff) | |
Notes
Diffstat (limited to 'sys/dev/ppbus')
| -rw-r--r-- | sys/dev/ppbus/vpo.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/ppbus/vpo.c b/sys/dev/ppbus/vpo.c index 8f61c056b1cc2..44cb54d3006f1 100644 --- a/sys/dev/ppbus/vpo.c +++ b/sys/dev/ppbus/vpo.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: vpo.c,v 1.3 1997/08/28 10:15:20 msmith Exp $ + * $Id: vpo.c,v 1.4 1997/09/01 00:51:52 bde Exp $ * */ @@ -63,8 +63,8 @@ * -------------------------------------------------------------------- */ -static inline int vpoio_do_scsi(struct vpo_data *, int, int, char *, int, - char *, int, int *, int *); +static __inline int vpoio_do_scsi(struct vpo_data *, int, int, char *, int, + char *, int, int *, int *); static int32_t vpo_scsi_cmd(struct scsi_xfer *); static void vpominphys(struct buf *); @@ -220,7 +220,7 @@ vpominphys(struct buf *bp) } #ifdef VP0_WARNING -static inline void +static __inline void vpo_warning(struct vpo_data *vpo, struct scsi_xfer *xs, int timeout) { @@ -269,7 +269,7 @@ vpo_warning(struct vpo_data *vpo, struct scsi_xfer *xs, int timeout) /* * vpointr() */ -static inline void +static __inline void vpointr(struct vpo_data *vpo, struct scsi_xfer *xs) { @@ -694,7 +694,7 @@ vpoio_instr(struct vpo_data *vpo, char *buffer, int size) return (error); } -static inline char +static __inline char vpoio_select(struct vpo_data *vpo, int initiator, int target) { @@ -721,7 +721,7 @@ vpoio_select(struct vpo_data *vpo, int initiator, int target) * * H_SELIN must be low. */ -static inline char +static __inline char vpoio_wait(struct vpo_data *vpo, int tmo) { @@ -752,7 +752,7 @@ vpoio_wait(struct vpo_data *vpo, int tmo) return (0); /* command timed out */ } -static inline int +static __inline int vpoio_do_scsi(struct vpo_data *vpo, int host, int target, char *command, int clen, char *buffer, int blen, int *result, int *count) { |
