Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4295 → Rev 4296

/branches/dd/kernel/arch/sparc64/src/console.c
95,7 → 95,7
indev_t *kbrdin;
kbrdin = sgcnin_init();
if (kbrdin)
srlnin_init(kbrdin);
srln_init(kbrdin);
#endif
#ifdef CONFIG_SGCN_PRN
sgcnout_init();
118,7 → 118,7
/* "def-cn" = "default console" */
prop = ofw_tree_getprop(aliases, "def-cn");
if ((!prop) || (!prop->value) || (strcmp(prop->value, "/sgcn") != 0)) {
if ((!prop) || (!prop->value) || (str_cmp(prop->value, "/sgcn") != 0)) {
standard_console_init(aliases);
} else {
serengeti_init();
134,8 → 134,9
#ifdef CONFIG_FB
scr_redraw();
#endif
switch (kbd_type) {
#ifdef CONFIG_SGCN
#ifdef CONFIG_SGCN_KBD
case KBD_SGCN:
sgcn_grab();
break;
151,7 → 152,7
void arch_release_console(void)
{
switch (kbd_type) {
#ifdef CONFIG_SGCN
#ifdef CONFIG_SGCN_KBD
case KBD_SGCN:
sgcn_release();
break;