From patchwork Sun Aug 31 08:46:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Gray X-Patchwork-Id: 4815061 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 53FFE9F375 for ; Sun, 31 Aug 2014 09:05:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 972B82012E for ; Sun, 31 Aug 2014 09:05:11 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 869392012D for ; Sun, 31 Aug 2014 09:05:09 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 835256E08B; Sun, 31 Aug 2014 02:05:08 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org X-Greylist: delayed 1087 seconds by postgrey-1.34 at gabe; Sun, 31 Aug 2014 02:05:07 PDT Received: from lechuck.jsg.id.au (jsg.id.au [210.15.216.215]) by gabe.freedesktop.org (Postfix) with ESMTP id 9DA636E08B for ; Sun, 31 Aug 2014 02:05:07 -0700 (PDT) Received: from carla.jsg.id.au (carla.jsg.id.au [192.168.1.42]) by lechuck.jsg.id.au (8.14.8/8.14.8) with ESMTP id s7V8kves023239 for ; Sun, 31 Aug 2014 18:46:57 +1000 (EST) Received: from carla.jsg.id.au (localhost.jsg.id.au [127.0.0.1]) by carla.jsg.id.au (8.14.8/8.14.3) with ESMTP id s7V8kucf022954 for ; Sun, 31 Aug 2014 18:46:57 +1000 (EST) From: Jonathan Gray To: intel-gfx@lists.freedesktop.org Date: Sun, 31 Aug 2014 18:46:56 +1000 Message-Id: <1409474816-31952-1-git-send-email-jsg@jsg.id.au> X-Mailer: git-send-email 1.8.5.3 Subject: [Intel-gfx] [PATCH xf86-video-intel] intel: include sys/param.h for sys/mount.h X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-5.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On OpenBSD sys/mount.h includes sys/ucred.h which in turn requires the NGROUPS definitions from sys/param.h. Signed-off-by: Jonathan Gray --- src/intel_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel_device.c b/src/intel_device.c index 9a2ebb0..1e2d931 100644 --- a/src/intel_device.c +++ b/src/intel_device.c @@ -30,6 +30,7 @@ #include #include +#include #include #include #include