From owner-svn-src-head@freebsd.org Sun Apr 1 18:22:25 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E073F72C3D; Sun, 1 Apr 2018 18:22:25 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2B0477D68; Sun, 1 Apr 2018 18:22:24 +0000 (UTC) (envelope-from ian@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C46FF27DF; Sun, 1 Apr 2018 18:22:24 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w31IMO0X085506; Sun, 1 Apr 2018 18:22:24 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w31IMOeI085501; Sun, 1 Apr 2018 18:22:24 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201804011822.w31IMOeI085501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 1 Apr 2018 18:22:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r331868 - in head/sys/modules: i2c/iicbus i2c/isl spi/at45d spi/mx25l spi/spibus X-SVN-Group: head X-SVN-Commit-Author: ian X-SVN-Commit-Paths: in head/sys/modules: i2c/iicbus i2c/isl spi/at45d spi/mx25l spi/spibus X-SVN-Commit-Revision: 331868 X-SVN-Commit-Repository: base 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.25 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: Sun, 01 Apr 2018 18:22:25 -0000 Author: ian Date: Sun Apr 1 18:22:24 2018 New Revision: 331868 URL: https://svnweb.freebsd.org/changeset/base/331868 Log: Add opt_platform.h for several modules that have #ifdef FDT in the source. Submitted by: Andre Albsmeier Modified: head/sys/modules/i2c/iicbus/Makefile head/sys/modules/i2c/isl/Makefile head/sys/modules/spi/at45d/Makefile head/sys/modules/spi/mx25l/Makefile head/sys/modules/spi/spibus/Makefile Modified: head/sys/modules/i2c/iicbus/Makefile ============================================================================== --- head/sys/modules/i2c/iicbus/Makefile Sun Apr 1 16:43:30 2018 (r331867) +++ head/sys/modules/i2c/iicbus/Makefile Sun Apr 1 18:22:24 2018 (r331868) @@ -13,6 +13,7 @@ SRCS= \ iicbus_if.h \ iiconf.c \ iiconf.h \ + opt_platform.h \ .if !empty(OPT_FDT) SRCS+= ofw_iicbus.c ofw_bus_if.h Modified: head/sys/modules/i2c/isl/Makefile ============================================================================== --- head/sys/modules/i2c/isl/Makefile Sun Apr 1 16:43:30 2018 (r331867) +++ head/sys/modules/i2c/isl/Makefile Sun Apr 1 18:22:24 2018 (r331868) @@ -2,6 +2,6 @@ .PATH: ${SRCTOP}/sys/dev/isl KMOD = isl -SRCS = isl.c device_if.h bus_if.h iicbus_if.h +SRCS = isl.c device_if.h bus_if.h iicbus_if.h opt_platform.h .include Modified: head/sys/modules/spi/at45d/Makefile ============================================================================== --- head/sys/modules/spi/at45d/Makefile Sun Apr 1 16:43:30 2018 (r331867) +++ head/sys/modules/spi/at45d/Makefile Sun Apr 1 18:22:24 2018 (r331868) @@ -9,6 +9,7 @@ SRCS= at45d.c SRCS+= \ bus_if.h \ device_if.h \ + opt_platform.h \ spibus_if.h \ .if !empty(OPT_FDT) Modified: head/sys/modules/spi/mx25l/Makefile ============================================================================== --- head/sys/modules/spi/mx25l/Makefile Sun Apr 1 16:43:30 2018 (r331867) +++ head/sys/modules/spi/mx25l/Makefile Sun Apr 1 18:22:24 2018 (r331868) @@ -9,6 +9,7 @@ SRCS= mx25l.c SRCS+= \ bus_if.h \ device_if.h \ + opt_platform.h \ spibus_if.h \ .if !empty(OPT_FDT) Modified: head/sys/modules/spi/spibus/Makefile ============================================================================== --- head/sys/modules/spi/spibus/Makefile Sun Apr 1 16:43:30 2018 (r331867) +++ head/sys/modules/spi/spibus/Makefile Sun Apr 1 18:22:24 2018 (r331868) @@ -13,6 +13,7 @@ SRCS+= ofw_spibus.c ofw_bus_if.h SRCS+= \ bus_if.h \ device_if.h \ + opt_platform.h \ spibus_if.c \ spibus_if.h \