ata-pci support for at driver.

added a hook in libdriver for HARD_INT messages.
This commit is contained in:
Ben Gras
2005-08-25 08:19:11 +00:00
parent a72050e805
commit ae5f1f2286
10 changed files with 271 additions and 81 deletions
+2 -2
View File
@@ -283,8 +283,8 @@ PUBLIC void main(void)
case DEV_SELECT: do_select(tp, &tty_mess); break;
case CANCEL: do_cancel(tp, &tty_mess); break;
default:
printf("Warning, TTY got unexpected request %d from %d\n",
tty_mess.m_type, tty_mess.m_source);
printf("Warning, TTY got unexpected request %d from %d (open is %d)\n",
tty_mess.m_type, tty_mess.m_source, DEV_OPEN);
tty_reply(TASK_REPLY, tty_mess.m_source,
tty_mess.PROC_NR, EINVAL);
}