From owner-svn-src-head@freebsd.org Fri Sep 9 04:54:42 2016 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 598A8BD2074; Fri, 9 Sep 2016 04:54:42 +0000 (UTC) (envelope-from adrian@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 1C9FC3C5; Fri, 9 Sep 2016 04:54:42 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u894sfox002290; Fri, 9 Sep 2016 04:54:41 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u894sf2l002289; Fri, 9 Sep 2016 04:54:41 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201609090454.u894sf2l002289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Fri, 9 Sep 2016 04:54:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r305639 - head/sys/dev/gpio 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: Fri, 09 Sep 2016 04:54:42 -0000 Author: adrian Date: Fri Sep 9 04:54:41 2016 New Revision: 305639 URL: https://svnweb.freebsd.org/changeset/base/305639 Log: [gpio] include intr.h when building with INTRNG. Trying to build a MIPS platform that uses INTRNG needs this for this to work right in gpiobusvar.h : #ifdef INTRNG struct intr_map_data_gpio { struct intr_map_data hdr; ... }; #endif Modified: head/sys/dev/gpio/gpiobusvar.h Modified: head/sys/dev/gpio/gpiobusvar.h ============================================================================== --- head/sys/dev/gpio/gpiobusvar.h Fri Sep 9 04:47:48 2016 (r305638) +++ head/sys/dev/gpio/gpiobusvar.h Fri Sep 9 04:54:41 2016 (r305639) @@ -41,6 +41,10 @@ #include #endif +#ifdef INTRNG +#include +#endif + #include "gpio_if.h" #ifdef FDT