svn commit: r244722 - projects/efika_mx/sys/arm/freescale/imx

Aleksandr Rybalko ray at FreeBSD.org
Thu Dec 27 00:16:02 UTC 2012


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);


More information about the svn-src-projects mailing list