Staticized. Things exported by linker sets should always be static.

This commit is contained in:
Bruce Evans 1996-10-12 17:34:25 +00:00
parent bdf9734704
commit 71f4712b50
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18887
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: 3c5x9.c,v 1.4 1996/07/19 13:19:47 amurai Exp $
* $Id: 3c5x9.c,v 1.5 1996/09/06 23:06:53 phk Exp $
*/
#include "eisa.h"
@ -68,7 +68,7 @@
static int ep_eisa_probe __P((void));
static int ep_eisa_attach __P((struct eisa_device *e_dev));
struct eisa_driver ep_eisa_driver = {
static struct eisa_driver ep_eisa_driver = {
"ep",
ep_eisa_probe,
ep_eisa_attach,

View File

@ -19,7 +19,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: 3c5x9.c,v 1.4 1996/07/19 13:19:47 amurai Exp $
* $Id: 3c5x9.c,v 1.5 1996/09/06 23:06:53 phk Exp $
*/
#include "eisa.h"
@ -68,7 +68,7 @@
static int ep_eisa_probe __P((void));
static int ep_eisa_attach __P((struct eisa_device *e_dev));
struct eisa_driver ep_eisa_driver = {
static struct eisa_driver ep_eisa_driver = {
"ep",
ep_eisa_probe,
ep_eisa_attach,