svn commit: r239628 - head/sys/dev/ath/ath_hal

Adrian Chadd adrian at FreeBSD.org
Fri Aug 24 00:15:27 UTC 2012


Author: adrian
Date: Fri Aug 24 00:15:26 2012
New Revision: 239628
URL: http://svn.freebsd.org/changeset/base/239628

Log:
  Wrap this a little so it's slightly easier on the eyes.

Modified:
  head/sys/dev/ath/ath_hal/ah_internal.h

Modified: head/sys/dev/ath/ath_hal/ah_internal.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah_internal.h	Fri Aug 24 00:09:49 2012	(r239627)
+++ head/sys/dev/ath/ath_hal/ah_internal.h	Fri Aug 24 00:15:26 2012	(r239628)
@@ -514,7 +514,8 @@ isBigEndian(void)
 
 /* Analog register writes may require a delay between each one (eg Merlin?) */
 #define	OS_A_REG_RMW_FIELD(_a, _r, _f, _v) \
-	do { OS_REG_WRITE(_a, _r, (OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f))) ; OS_DELAY(100); } while (0)
+	do { OS_REG_WRITE(_a, _r, (OS_REG_READ(_a, _r) &~ (_f)) | \
+	    (((_v) << _f##_S) & (_f))) ; OS_DELAY(100); } while (0)
 #define	OS_A_REG_WRITE(_a, _r, _v) \
 	do { OS_REG_WRITE(_a, _r, _v); OS_DELAY(100); } while (0)
 


More information about the svn-src-all mailing list