[BACK]Return to if_lc_isa.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / isa

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/isa/if_lc_isa.c between version 1.28 and 1.29

version 1.28, 2007/10/19 12:00:18 version 1.29, 2008/04/08 20:08:50
Line 145  lemac_isa_find(sc, ia, attach)
Line 145  lemac_isa_find(sc, ia, attach)
          */           */
         if (ia->ia_irq[0].ir_irq != ISA_UNKNOWN_IRQ &&          if (ia->ia_irq[0].ir_irq != ISA_UNKNOWN_IRQ &&
             ia->ia_irq[0].ir_irq != irq)              ia->ia_irq[0].ir_irq != irq)
                 printf("%s: overriding IRQ %d to %d\n", sc->sc_dv.dv_xname,                  printf("%s: overriding IRQ %d to %d\n", device_xname(&sc->sc_dv),
                        ia->ia_irq[0].ir_irq, irq);                         ia->ia_irq[0].ir_irq, irq);
   
         if (attach) {          if (attach) {
                 sc->sc_ats = shutdownhook_establish(lemac_shutdown, sc);                  sc->sc_ats = shutdownhook_establish(lemac_shutdown, sc);
                 if (sc->sc_ats == NULL)                  if (sc->sc_ats == NULL) {
                         printf("\n%s: warning: can't establish shutdown hook\n",                          aprint_normal("\n");
                             sc->sc_dv.dv_xname);                          aprint_error_dev(&sc->sc_dv, "warning: can't establish shutdown hook\n");
                   }
   
                 lemac_ifattach(sc);                  lemac_ifattach(sc);
   

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

CVSweb <webmaster@jp.NetBSD.org>