From owner-svn-src-stable@freebsd.org Thu Mar 2 22:43:01 2017 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 EFD96CF697E; Thu, 2 Mar 2017 22:43:00 +0000 (UTC) (envelope-from gonzo@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 B92211E9E; Thu, 2 Mar 2017 22:43:00 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v22MgxOE026124; Thu, 2 Mar 2017 22:42:59 GMT (envelope-from gonzo@FreeBSD.org) Received: (from gonzo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v22MgxIP026122; Thu, 2 Mar 2017 22:42:59 GMT (envelope-from gonzo@FreeBSD.org) Message-Id: <201703022242.v22MgxIP026122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gonzo set sender to gonzo@FreeBSD.org using -f From: Oleksandr Tymoshenko Date: Thu, 2 Mar 2017 22:42:59 +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: r314569 - in stable/11/sys/modules: bytgpio intelspi 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: Thu, 02 Mar 2017 22:43:01 -0000 Author: gonzo Date: Thu Mar 2 22:42:59 2017 New Revision: 314569 URL: https://svnweb.freebsd.org/changeset/base/314569 Log: MFC r314535: [intelspi][bytgio] Fix buildworld with MODULES_WITH_WORLD set Add opt_platform.h and opt_acpi.h to the dependencies so modules can be built as a part of buildworld when MODULES_WITH_WORLD is set Reported by: Andre Albsmeier (for 11-stable) Modified: stable/11/sys/modules/bytgpio/Makefile stable/11/sys/modules/intelspi/Makefile Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/modules/bytgpio/Makefile ============================================================================== --- stable/11/sys/modules/bytgpio/Makefile Thu Mar 2 22:17:53 2017 (r314568) +++ stable/11/sys/modules/bytgpio/Makefile Thu Mar 2 22:42:59 2017 (r314569) @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../dev/gpio KMOD= bytgpio SRCS= bytgpio.c -SRCS+= acpi_if.h device_if.h bus_if.h gpio_if.h +SRCS+= acpi_if.h device_if.h bus_if.h gpio_if.h opt_acpi.h opt_platform.h .include Modified: stable/11/sys/modules/intelspi/Makefile ============================================================================== --- stable/11/sys/modules/intelspi/Makefile Thu Mar 2 22:17:53 2017 (r314568) +++ stable/11/sys/modules/intelspi/Makefile Thu Mar 2 22:42:59 2017 (r314569) @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../dev/intel KMOD= intelspi SRCS= spi.c -SRCS+= acpi_if.h device_if.h bus_if.h spibus_if.h +SRCS+= acpi_if.h device_if.h bus_if.h opt_acpi.h spibus_if.h .include