From owner-svn-src-all@FreeBSD.ORG Thu Feb 27 13:26:42 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A56A2C8; Thu, 27 Feb 2014 13:26:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 73D0D17C7; Thu, 27 Feb 2014 13:26:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1RDQg8x063770; Thu, 27 Feb 2014 13:26:42 GMT (envelope-from loos@svn.freebsd.org) Received: (from loos@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1RDQfLV063767; Thu, 27 Feb 2014 13:26:41 GMT (envelope-from loos@svn.freebsd.org) Message-Id: <201402271326.s1RDQfLV063767@svn.freebsd.org> From: Luiz Otavio O Souza Date: Thu, 27 Feb 2014 13:26:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262559 - in head/sys/modules/gpio: gpiobus gpioiic gpioled X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 13:26:42 -0000 Author: loos Date: Thu Feb 27 13:26:41 2014 New Revision: 262559 URL: http://svnweb.freebsd.org/changeset/base/262559 Log: Inspired by r262522, fix make depend. This fixes the build of gpio modules. Approved by: adrian (mentor) Modified: head/sys/modules/gpio/gpiobus/Makefile head/sys/modules/gpio/gpioiic/Makefile head/sys/modules/gpio/gpioled/Makefile Modified: head/sys/modules/gpio/gpiobus/Makefile ============================================================================== --- head/sys/modules/gpio/gpiobus/Makefile Thu Feb 27 13:25:26 2014 (r262558) +++ head/sys/modules/gpio/gpiobus/Makefile Thu Feb 27 13:26:41 2014 (r262559) @@ -33,7 +33,7 @@ KMOD= gpiobus SRCS= gpiobus.c -SRCS+= device_if.h bus_if.h gpio_if.h gpiobus_if.h +SRCS+= device_if.h bus_if.h gpio_if.h gpiobus_if.h opt_platform.h CFLAGS+= -I. -I${.CURDIR}/../../../dev/gpio/ Modified: head/sys/modules/gpio/gpioiic/Makefile ============================================================================== --- head/sys/modules/gpio/gpioiic/Makefile Thu Feb 27 13:25:26 2014 (r262558) +++ head/sys/modules/gpio/gpioiic/Makefile Thu Feb 27 13:26:41 2014 (r262559) @@ -34,6 +34,7 @@ KMOD= gpioiic SRCS= gpioiic.c SRCS+= device_if.h bus_if.h gpio_if.h gpiobus_if.h iicbus_if.h iicbb_if.h +SRCS+= opt_platform.h CFLAGS+= -I. -I${.CURDIR}/../../../dev/gpio/ Modified: head/sys/modules/gpio/gpioled/Makefile ============================================================================== --- head/sys/modules/gpio/gpioled/Makefile Thu Feb 27 13:25:26 2014 (r262558) +++ head/sys/modules/gpio/gpioled/Makefile Thu Feb 27 13:26:41 2014 (r262559) @@ -33,7 +33,7 @@ KMOD= gpioled SRCS= gpioled.c -SRCS+= device_if.h bus_if.h gpio_if.h gpiobus_if.h +SRCS+= device_if.h bus_if.h gpio_if.h gpiobus_if.h opt_platform.h CFLAGS+= -I. -I${.CURDIR}/../../../dev/gpio/