svn commit: r228793 - head/sys/modules/ath

Dimitry Andric dim at FreeBSD.org
Wed Dec 21 22:13:51 UTC 2011


Author: dim
Date: Wed Dec 21 22:13:50 2011
New Revision: 228793
URL: http://svn.freebsd.org/changeset/base/228793

Log:
  Amend r228783 by also disabling -Wshift-count-negative
  -Wshift-count-overflow warnings for the ath module.
  
  MFC after:	1 week

Modified:
  head/sys/modules/ath/Makefile

Modified: head/sys/modules/ath/Makefile
==============================================================================
--- head/sys/modules/ath/Makefile	Wed Dec 21 21:39:30 2011	(r228792)
+++ head/sys/modules/ath/Makefile	Wed Dec 21 22:13:50 2011	(r228793)
@@ -139,6 +139,7 @@ SRCS+=	amrr.c
 SRCS+=	dfs_null.c
 
 CFLAGS+=  -I. -I${.CURDIR}/../../dev/ath -I${.CURDIR}/../../dev/ath/ath_hal
+CWARNFLAGS+=	${NO_WSHIFT_COUNT_NEGATIVE} ${NO_WSHIFT_COUNT_OVERFLOW}
 
 opt_ah.h:
 	echo '#define AH_SUPPORT_AR5416 1' > $@


More information about the svn-src-all mailing list