diff options
| author | Andriy Gapon <avg@FreeBSD.org> | 2011-12-17 15:08:43 +0000 |
|---|---|---|
| committer | Andriy Gapon <avg@FreeBSD.org> | 2011-12-17 15:08:43 +0000 |
| commit | 9976156f12f1be7cb85c90e9ef54be06690bc955 (patch) | |
| tree | cf89ca64a6042918d5429b9a17cfaa8421be34c2 /sys/dev/cfe | |
| parent | 5dc6a815806b50efdd705b6f52804c2030748638 (diff) | |
Notes
Diffstat (limited to 'sys/dev/cfe')
| -rw-r--r-- | sys/dev/cfe/cfe_console.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/dev/cfe/cfe_console.c b/sys/dev/cfe/cfe_console.c index 5a6b0a2bf9ba..485fd083da5e 100644 --- a/sys/dev/cfe/cfe_console.c +++ b/sys/dev/cfe/cfe_console.c @@ -76,6 +76,8 @@ static cn_init_t cfe_cninit; static cn_term_t cfe_cnterm; static cn_getc_t cfe_cngetc; static cn_putc_t cfe_cnputc; +static cn_grab_t cfe_cngrab; +static cn_ungrab_t cfe_cnungrab; CONSOLE_DRIVER(cfe); @@ -183,6 +185,18 @@ cfe_cnterm(struct consdev *cp) } +static void +cfe_cngrab(struct consdev *cp) +{ + +} + +static void +cfe_cnungrab(struct consdev *cp) +{ + +} + static int cfe_cngetc(struct consdev *cp) { |
