From owner-svn-src-head@freebsd.org Mon May 8 20:58:34 2017 Return-Path: Delivered-To: svn-src-head@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 05BAED63987; Mon, 8 May 2017 20:58:34 +0000 (UTC) (envelope-from marius@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 A635D18DB; Mon, 8 May 2017 20:58:33 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v48KwWOu049270; Mon, 8 May 2017 20:58:32 GMT (envelope-from marius@FreeBSD.org) Received: (from marius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v48KwWWq049269; Mon, 8 May 2017 20:58:32 GMT (envelope-from marius@FreeBSD.org) Message-Id: <201705082058.v48KwWWq049269@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marius set sender to marius@FreeBSD.org using -f From: Marius Strobl Date: Mon, 8 May 2017 20:58:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r317981 - head/sys/modules/mmcsd X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 May 2017 20:58:34 -0000 Author: marius Date: Mon May 8 20:58:32 2017 New Revision: 317981 URL: https://svnweb.freebsd.org/changeset/base/317981 Log: Revise r315430; there's no need to build mmc_subr.c into both mmc.ko and mmcsd.ko. Modified: head/sys/modules/mmcsd/Makefile Modified: head/sys/modules/mmcsd/Makefile ============================================================================== --- head/sys/modules/mmcsd/Makefile Mon May 8 20:44:21 2017 (r317980) +++ head/sys/modules/mmcsd/Makefile Mon May 8 20:58:32 2017 (r317981) @@ -3,6 +3,6 @@ .PATH: ${SRCTOP}/sys/dev/mmc KMOD= mmcsd -SRCS= bus_if.h device_if.h mmc_subr.c mmcbr_if.h mmcbus_if.h mmcsd.c +SRCS= bus_if.h device_if.h mmcbr_if.h mmcbus_if.h mmcsd.c .include