From owner-svn-src-stable@freebsd.org Sun Dec 25 17:01:59 2016 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFD7DC90E41; Sun, 25 Dec 2016 17:01:59 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8EF651893; Sun, 25 Dec 2016 17:01:59 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBPH1wxt011962; Sun, 25 Dec 2016 17:01:58 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBPH1wMa011960; Sun, 25 Dec 2016 17:01:58 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201612251701.uBPH1wMa011960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sun, 25 Dec 2016 17:01:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r310546 - in stable/11/sys: conf modules/si X-SVN-Group: stable-11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2016 17:01:59 -0000 Author: dim Date: Sun Dec 25 17:01:58 2016 New Revision: 310546 URL: https://svnweb.freebsd.org/changeset/base/310546 Log: Similar to r310545, make some additional -Wconstant-conversion warnings from clang 3.9.0 in si(4) non-fatal for now. Direct commit to stable/11, since si(4) has been deleted from head. Modified: stable/11/sys/conf/files stable/11/sys/modules/si/Makefile Modified: stable/11/sys/conf/files ============================================================================== --- stable/11/sys/conf/files Sun Dec 25 16:37:35 2016 (r310545) +++ stable/11/sys/conf/files Sun Dec 25 17:01:58 2016 (r310546) @@ -2558,7 +2558,8 @@ dev/sdhci/sdhci_if.m optional sdhci dev/sdhci/sdhci_pci.c optional sdhci pci dev/sf/if_sf.c optional sf pci dev/sge/if_sge.c optional sge pci -dev/si/si.c optional si +dev/si/si.c optional si \ + compile-with "${NORMAL_C} ${NO_WCONSTANT_CONVERSION}" dev/si/si2_z280.c optional si dev/si/si3_t225.c optional si dev/si/si_eisa.c optional si eisa Modified: stable/11/sys/modules/si/Makefile ============================================================================== --- stable/11/sys/modules/si/Makefile Sun Dec 25 16:37:35 2016 (r310545) +++ stable/11/sys/modules/si/Makefile Sun Dec 25 17:01:58 2016 (r310546) @@ -9,3 +9,5 @@ SRCS+= opt_compat.h opt_debug_si.h opt_e SRCS.DEV_EISA=si_eisa.c eisa_if.h .include + +CWARNFLAGS.si.c= ${NO_WCONSTANT_CONVERSION}