Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Dec 2012 00:16:02 +0000 (UTC)
From:      Aleksandr Rybalko <ray@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r244722 - projects/efika_mx/sys/arm/freescale/imx
Message-ID:  <201212270016.qBR0G2ss069787@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212270016.qBR0G2ss069787>