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: case SYN_ALARM:
printf("dp8390: strange, got SYN_ALARM\n"); printf("dp8390: strange, got SYN_ALARM\n");
break; break;
case PROC_EVENT:
break;
default: default:
panic("", "dp8390: illegal message", m.m_type); 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 */ case FKEY_PRESSED: /* Function key pressed */
do_dump(&m); do_dump(&m);
break; break;
case PROC_EVENT:
break;
default: /* Invalid message type */ default: /* Invalid message type */
panic(DevName, TypeErrMsg, m.m_type); panic(DevName, TypeErrMsg, m.m_type);
break; break;