From owner-svn-src-projects@FreeBSD.ORG Thu Dec 27 00:16:02 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 571639DB; Thu, 27 Dec 2012 00:16:02 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3C99E8FC08; Thu, 27 Dec 2012 00:16:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBR0G2rU069788; Thu, 27 Dec 2012 00:16:02 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBR0G2ss069787; Thu, 27 Dec 2012 00:16:02 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201212270016.qBR0G2ss069787@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 27 Dec 2012 00:16:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244722 - projects/efika_mx/sys/arm/freescale/imx X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Dec 2012 00:16:02 -0000 Author: ray Date: Thu Dec 27 00:16:01 2012 New Revision: 244722 URL: http://svnweb.freebsd.org/changeset/base/244722 Log: Fix long lines. Modified: projects/efika_mx/sys/arm/freescale/imx/imx51_ipuv3.c Modified: projects/efika_mx/sys/arm/freescale/imx/imx51_ipuv3.c ============================================================================== --- projects/efika_mx/sys/arm/freescale/imx/imx51_ipuv3.c Wed Dec 26 23:16:24 2012 (r244721) +++ projects/efika_mx/sys/arm/freescale/imx/imx51_ipuv3.c Thu Dec 27 00:16:01 2012 (r244722) @@ -116,9 +116,9 @@ struct video_adapter_softc { static struct ipu3sc_softc *ipu3sc_softc; static struct video_adapter_softc va_softc; -#define IPUV3_READ(ipuv3, module, reg) \ +#define IPUV3_READ(ipuv3, module, reg) \ bus_space_read_4((ipuv3)->iot, (ipuv3)->module##_ioh, (reg)) -#define IPUV3_WRITE(ipuv3, module, reg, val) \ +#define IPUV3_WRITE(ipuv3, module, reg, val) \ bus_space_write_4((ipuv3)->iot, (ipuv3)->module##_ioh, (reg), (val)) #define IPUV3_DEBUG 100 @@ -152,7 +152,8 @@ static int ipu3_fb_malloc(struct ipu3sc_softc *sc, size_t size) { - sc->vbase = (uint32_t)contigmalloc(size, M_DEVBUF, M_ZERO, 0, ~0, PAGE_SIZE, 0); + sc->vbase = (uint32_t)contigmalloc(size, M_DEVBUF, M_ZERO, 0, ~0, + PAGE_SIZE, 0); sc->pbase = vtophys(sc->vbase); return (0);