Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 955 → Rev 956

/shark/trunk/drivers/linuxc26/shark_linuxc26.c
53,7 → 53,7
res = shark_interrupt_server();
if (res != 0) {
printk("ERROR: CANNOT REGISTER LINUX COMPATIBILITY LAYER\n");
exit(1);
return 1;
}
 
return 0;
/shark/trunk/drivers/linuxc26/int.c
44,6 → 44,8
 
intr_count++;
 
//cprintf("(Int %d)", irq);
 
ihp=irq_list[irq].handlers;
while (ihp) {
(*ihp->func)(irq, ihp->data, &regs);
/shark/trunk/drivers/linuxc26/shark_videodev.c
27,8 → 27,8
int VIDEODEV26_open(int num) {
 
if (videodev_open_inode(num)) {
sys_shutdown_message("VIDEODEV26 ERROR: Cannot open the VideoDev driver\n");
exit(1);
printk("VIDEODEV26 ERROR: Cannot open the VideoDev driver\n");
return 1;
}
 
return 0;