diff options
| author | Kazutaka YOKOTA <yokota@FreeBSD.org> | 1999-08-02 03:45:40 +0000 |
|---|---|---|
| committer | Kazutaka YOKOTA <yokota@FreeBSD.org> | 1999-08-02 03:45:40 +0000 |
| commit | 74dc10dfa40eb5433a99fa880aa4cceb5a4a9d14 (patch) | |
| tree | c53265cfe130208d59d2e0ee50bd1f8db9bcdb6e /sys/dev/syscons/syscons.c | |
| parent | 802824c6be47d30ad12074113eaac64591ff0885 (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons/syscons.c')
| -rw-r--r-- | sys/dev/syscons/syscons.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index 747c31f45bf5..85d586196085 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -495,7 +495,10 @@ sc_probe_unit(int unit, int flags) return ENXIO; } - return ((sckbdprobe(unit, flags, FALSE)) ? 0 : ENXIO); + /* syscons will be attached even when there is no keyboard */ + sckbdprobe(unit, flags, FALSE); + + return 0; } /* probe video adapters, return TRUE if found */ |
