From owner-svn-src-head@freebsd.org Wed Jan 11 08:43:59 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 7C8B5CA96BE; Wed, 11 Jan 2017 08:43:59 +0000 (UTC) (envelope-from ngie@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 4937E123B; Wed, 11 Jan 2017 08:43:59 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0B8hwQB068148; Wed, 11 Jan 2017 08:43:58 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0B8hwlR068147; Wed, 11 Jan 2017 08:43:58 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201701110843.v0B8hwlR068147@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Wed, 11 Jan 2017 08:43:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r311923 - head/sys/modules/sdhci_acpi 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: Wed, 11 Jan 2017 08:43:59 -0000 Author: ngie Date: Wed Jan 11 08:43:58 2017 New Revision: 311923 URL: https://svnweb.freebsd.org/changeset/base/311923 Log: Add acpi_if.h and opt_acpi.h to Makefile to unbreak "make depend" with sys/modules/sdhci_acpi MFC after: 6 days X-MFC with: r311911 Reported by: Jenkins Modified: head/sys/modules/sdhci_acpi/Makefile Modified: head/sys/modules/sdhci_acpi/Makefile ============================================================================== --- head/sys/modules/sdhci_acpi/Makefile Wed Jan 11 08:15:18 2017 (r311922) +++ head/sys/modules/sdhci_acpi/Makefile Wed Jan 11 08:43:58 2017 (r311923) @@ -3,6 +3,7 @@ .PATH: ${.CURDIR}/../../dev/sdhci KMOD= sdhci_acpi -SRCS= sdhci_acpi.c sdhci.h sdhci_if.h device_if.h bus_if.h pci_if.h mmcbr_if.h +SRCS= sdhci_acpi.c sdhci.h sdhci_if.h +SRCS+= acpi_if.h device_if.h bus_if.h opt_acpi.h pci_if.h mmcbr_if.h .include