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/ic | |
| parent | 7e07ce2225a75a7d42ade04338c77b30b974113b (diff) | |
Notes
Diffstat (limited to 'sys/dev/ic')
| -rw-r--r-- | sys/dev/ic/i82586.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/i82586.h b/sys/dev/ic/i82586.h index 736df1ea1eeb..dd8f9cb8ba9a 100644 --- a/sys/dev/ic/i82586.h +++ b/sys/dev/ic/i82586.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: i82586.h,v 1.5 1997/02/22 09:38:02 peter Exp $ */ /* @@ -292,7 +292,7 @@ struct ie_config_cmd { * but since we have the inline facility, it makes sense to use that * instead. */ -static inline void +static __inline void ie_setup_config(volatile struct ie_config_cmd *cmd, int promiscuous, int manchester) { cmd->ie_config_count = 0x0c; @@ -309,14 +309,14 @@ ie_setup_config(volatile struct ie_config_cmd *cmd, cmd->ie_junk = 0xff; } -static inline caddr_t +static __inline caddr_t Align(caddr_t ptr) { unsigned long l = (unsigned long)ptr; l = (l + 3) & ~3L; return (caddr_t)l; } -static inline void +static __inline void ie_ack(volatile struct ie_sys_ctl_block *scb, u_int mask, int unit, void (*ca)(int)) { |
