[BACK]Return to psycho.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / sparc64 / dev

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

Diff for /src/sys/arch/sparc64/dev/psycho.c between version 1.33.2.7 and 1.33.2.8

version 1.33.2.7, 2002/09/06 08:41:27 version 1.33.2.8, 2002/10/10 18:36:34
Line 125  static int psycho_match __P((struct devi
Line 125  static int psycho_match __P((struct devi
 static  void    psycho_attach __P((struct device *, struct device *, void *));  static  void    psycho_attach __P((struct device *, struct device *, void *));
 static  int     psycho_print __P((void *aux, const char *p));  static  int     psycho_print __P((void *aux, const char *p));
   
 struct cfattach psycho_ca = {  CFATTACH_DECL(psycho, sizeof(struct psycho_softc),
         sizeof(struct psycho_softc), psycho_match, psycho_attach      psycho_match, psycho_attach, NULL, NULL);
 };  
   
 /*  /*
  * "sabre" is the UltraSPARC IIi onboard UPA to PCI bridge.  It manages a   * "sabre" is the UltraSPARC IIi onboard UPA to PCI bridge.  It manages a
Line 719  psycho_bus_a(arg)
Line 718  psycho_bus_a(arg)
          * It's uncorrectable.  Dump the regs and panic.           * It's uncorrectable.  Dump the regs and panic.
          */           */
   
         panic("%s: PCI bus A error AFAR %llx AFSR %llx\n",          panic("%s: PCI bus A error AFAR %llx AFSR %llx",
                 sc->sc_dev.dv_xname,                  sc->sc_dev.dv_xname,
                 (long long)regs->psy_pcictl[0].pci_afar,                  (long long)regs->psy_pcictl[0].pci_afar,
                 (long long)regs->psy_pcictl[0].pci_afsr);                  (long long)regs->psy_pcictl[0].pci_afsr);
Line 736  psycho_bus_b(arg)
Line 735  psycho_bus_b(arg)
          * It's uncorrectable.  Dump the regs and panic.           * It's uncorrectable.  Dump the regs and panic.
          */           */
   
         panic("%s: PCI bus B error AFAR %llx AFSR %llx\n",          panic("%s: PCI bus B error AFAR %llx AFSR %llx",
                 sc->sc_dev.dv_xname,                  sc->sc_dev.dv_xname,
                 (long long)regs->psy_pcictl[0].pci_afar,                  (long long)regs->psy_pcictl[0].pci_afar,
                 (long long)regs->psy_pcictl[0].pci_afsr);                  (long long)regs->psy_pcictl[0].pci_afsr);

Legend:
Removed from v.1.33.2.7  
changed lines
  Added in v.1.33.2.8

CVSweb <webmaster@jp.NetBSD.org>