diff options
author | bde <bde@FreeBSD.org> | 1995-11-18 08:12:30 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-11-18 08:12:30 +0000 |
commit | 618bbe9fb06bb35d57be5c065daca4ee243ed4f7 (patch) | |
tree | 6ae2972ca7e3f409118ede30d823c30000b4038b /sys/dev/ic | |
parent | e1c8826a5609fb862b02e0d6344aa1778dea592a (diff) | |
download | FreeBSD-src-618bbe9fb06bb35d57be5c065daca4ee243ed4f7.zip FreeBSD-src-618bbe9fb06bb35d57be5c065daca4ee243ed4f7.tar.gz |
Staticized an inline function. All inlines in kernel headers should be
static. The function shouldn't be here anyway. It is driver dependent,
while `ic' files are supposed to only depend on the IC.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/i82586.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/i82586.h b/sys/dev/ic/i82586.h index 844bcd4..612a669 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: i82586.h,v 1.1 1993/10/12 06:53:10 rgrimes Exp $ + * $Id: i82586.h,v 1.2 1995/10/31 18:41:47 phk Exp $ */ /* @@ -292,7 +292,7 @@ struct ie_config_cmd { * but since we have the inline facility, it makes sense to use that * instead. */ -inline void +static inline void ie_setup_config(volatile struct ie_config_cmd *cmd, int promiscuous, int manchester) { cmd->ie_config_count = 0x0c; |