[BACK]Return to kern_devconfig.c CVS log [TXT][DIR] Up to [local] / funnyos / kern

Diff for /funnyos/kern/kern_devconfig.c between version 1.9 and 1.10

version 1.9, 2007/11/24 17:38:31 version 1.10, 2007/12/16 12:54:44
Line 177 
Line 177 
                         cdevp->dv_active = 1;                          cdevp->dv_active = 1;
   
                         /* if device has interrupt handler, establish it */                          /* if device has interrupt handler, establish it */
                         if (drp->dr_interrupt != NULL && aip->ai_intrno != 0) {                          if (drp->dr_interrupt != NULL) {
                                 DPRINTF("devconfig_attach_childs: establishing interrupt %d for %s/%d\n",                                  DPRINTF("devconfig_attach_childs: establishing interrupt %d for %s/%d\n",
                                                         aip->ai_intrno, cdevp->dv_name, cdevp->dv_minor);                                                          aip->ai_intrno, cdevp->dv_name, cdevp->dv_minor);
                                 intr_establish(aip->ai_intrno, cdevp, drp->dr_interrupt);                                  intr_establish(aip->ai_intrno, cdevp, drp->dr_interrupt);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

CVSweb