]> Zhao Yanbai Git Server - minix.git/commitdiff
Understand PROC_EVENT
authorBen Gras <ben@minix3.org>
Fri, 10 Mar 2006 16:38:36 +0000 (16:38 +0000)
committerBen Gras <ben@minix3.org>
Fri, 10 Mar 2006 16:38:36 +0000 (16:38 +0000)
drivers/dp8390/dp8390.c
drivers/dpeth/dp.c

index 6aa36294f9e57d71b60267bb5c50d95b68782835..d431fcf4a322f54c6be53181234180f32ee084fe 100644 (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);
                }
index 1aaadee1dd95d0afbe67d81b1147d6de3afebdda..06d43d26f952356c89bd5e03265b0a4efdb132f3 100644 (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;