diff options
author | Peter Wemm <peter@FreeBSD.org> | 2002-02-27 23:47:45 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2002-02-27 23:47:45 +0000 |
commit | f7afd87572cc3380a15734e37750e6a4f9e77899 (patch) | |
tree | fbaabf4a52398b17bd38811ea800d66ad8382d68 /sys/dev/digi/digi.c | |
parent | e211585c77db3db8d8aa98cc6968a589d0fb5810 (diff) | |
download | src-f7afd87572cc3380a15734e37750e6a4f9e77899.tar.gz src-f7afd87572cc3380a15734e37750e6a4f9e77899.zip |
Fix warnings. The driver would be more useful with a DRIVER_MODULE()
entry so that it actually can do something.
Notes
Notes:
svn path=/head/; revision=91445
Diffstat (limited to 'sys/dev/digi/digi.c')
-rw-r--r-- | sys/dev/digi/digi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/digi/digi.c b/sys/dev/digi/digi.c index 0f0ce0046cf3..6b92a35360fb 100644 --- a/sys/dev/digi/digi.c +++ b/sys/dev/digi/digi.c @@ -106,7 +106,7 @@ struct con_bios { }; static struct con_bios *con_bios_list; -static devclass_t digi_devclass; +devclass_t digi_devclass; static char driver_name[] = "digi"; unsigned digi_debug = 0; |