From owner-svn-soc-all@FreeBSD.ORG Sat Sep 14 16:03:04 2013 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3502A909 for ; Sat, 14 Sep 2013 16:03:04 +0000 (UTC) (envelope-from zcore@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 081FE2D8E for ; Sat, 14 Sep 2013 16:03:04 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8EG33sA072322 for ; Sat, 14 Sep 2013 16:03:03 GMT (envelope-from zcore@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.7/8.14.6/Submit) id r8EG33LY072320 for svn-soc-all@FreeBSD.org; Sat, 14 Sep 2013 16:03:03 GMT (envelope-from zcore@FreeBSD.org) Date: Sat, 14 Sep 2013 16:03:03 GMT Message-Id: <201309141603.r8EG33LY072320@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to zcore@FreeBSD.org using -f From: zcore@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r257337 - soc2013/zcore/head/usr.sbin/bhyve MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Sep 2013 16:03:04 -0000 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);