Understand PROC_EVENT

This commit is contained in:
Ben Gras 2006-03-10 16:38:36 +00:00
parent 71fd7596fa
commit 138a372e84
2 changed files with 4 additions and 0 deletions

View File

@ -245,6 +245,8 @@ int main(int argc, char *argv[])
case SYN_ALARM:
printf("dp8390: strange, got SYN_ALARM\n");
break;
case PROC_EVENT:
break;
default:
panic("", "dp8390: illegal message", m.m_type);
}

View File

@ -648,6 +648,8 @@ PUBLIC int main(int argc, char **argv)
case FKEY_PRESSED: /* Function key pressed */
do_dump(&m);
break;
case PROC_EVENT:
break;
default: /* Invalid message type */
panic(DevName, TypeErrMsg, m.m_type);
break;