Date: Sat, 14 Sep 2013 16:03:03 GMT From: zcore@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r257337 - soc2013/zcore/head/usr.sbin/bhyve Message-ID: <201309141603.r8EG33LY072320@socsvn.freebsd.org>
index | next in thread | raw e-mail
Author: zcore Date: Sat Sep 14 16:03:03 2013 New Revision: 257337 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=257337 Log: remove '^M' in log Modified: soc2013/zcore/head/usr.sbin/bhyve/pci_ahci.c Modified: soc2013/zcore/head/usr.sbin/bhyve/pci_ahci.c ============================================================================== --- soc2013/zcore/head/usr.sbin/bhyve/pci_ahci.c Sat Sep 14 16:02:39 2013 (r257336) +++ soc2013/zcore/head/usr.sbin/bhyve/pci_ahci.c Sat Sep 14 16:03:03 2013 (r257337) @@ -1218,7 +1218,7 @@ offset = (offset - AHCI_OFFSET) % AHCI_STEP; struct ahci_port *p = &sc->port[port]; - DPRINTF(("pci_ahci_port %d: write offset 0x%"PRIx64" value 0x%"PRIx64"\n\r", + DPRINTF(("pci_ahci_port %d: write offset 0x%"PRIx64" value 0x%"PRIx64"\n", port, offset, value)); switch (offset) { case AHCI_P_CLB: @@ -1309,7 +1309,7 @@ static void pci_ahci_host_write(struct pci_ahci_softc *sc, uint64_t offset, uint64_t value) { - DPRINTF(("pci_ahci_host: write offset 0x%"PRIx64" value 0x%"PRIx64"\n\r", + DPRINTF(("pci_ahci_host: write offset 0x%"PRIx64" value 0x%"PRIx64"\n", offset, value)); switch (offset) { @@ -1352,7 +1352,7 @@ else if (offset < AHCI_OFFSET + sc->ports * AHCI_STEP) pci_ahci_port_write(sc, offset, value); else - DPRINTF(("pci_ahci: unknown i/o write offset 0x%"PRIx64"\n\r", offset)); + DPRINTF(("pci_ahci: unknown i/o write offset 0x%"PRIx64"\n", offset)); pthread_mutex_unlock(&sc->mtx); } @@ -1383,7 +1383,7 @@ value = 0; break; } - DPRINTF(("pci_ahci_host: read offset 0x%"PRIx64" value 0x%x\n\r", + DPRINTF(("pci_ahci_host: read offset 0x%"PRIx64" value 0x%x\n", offset, value)); return (value); @@ -1423,7 +1423,7 @@ value = 0; break; } - DPRINTF(("pci_ahci_port %d: read offset 0x%"PRIx64" value 0x%x\n\r", + DPRINTF(("pci_ahci_port %d: read offset 0x%"PRIx64" value 0x%x\n", port, offset, value)); return value; @@ -1446,7 +1446,7 @@ else if (offset < AHCI_OFFSET + sc->ports * AHCI_STEP) value = pci_ahci_port_read(sc, offset); else - DPRINTF(("pci_ahci: unknown i/o read offset 0x%"PRIx64"\n\r", offset)); + DPRINTF(("pci_ahci: unknown i/o read offset 0x%"PRIx64"\n", offset)); pthread_mutex_unlock(&sc->mtx);help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309141603.r8EG33LY072320>
