From patchwork Fri Aug 2 15:51:12 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Cooper X-Patchwork-Id: 2838020 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 5A25CBF535 for ; Fri, 2 Aug 2013 15:54:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B968C2041D for ; Fri, 2 Aug 2013 15:54:00 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id C13042041C for ; Fri, 2 Aug 2013 15:53:59 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1V5Hf8-0006Uv-Ei; Fri, 02 Aug 2013 15:53:07 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1V5Heq-0006of-1k; Fri, 02 Aug 2013 15:52:48 +0000 Received: from mho-03-ewr.mailhop.org ([204.13.248.66] helo=mho-01-ewr.mailhop.org) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1V5HeK-0006j2-4S for linux-arm-kernel@lists.infradead.org; Fri, 02 Aug 2013 15:52:23 +0000 Received: from pool-72-84-113-162.nrflva.fios.verizon.net ([72.84.113.162] helo=titan) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1V5Hdy-000Luq-DJ; Fri, 02 Aug 2013 15:51:54 +0000 Received: from triton.localdomain (omega.lakedaemon.net [10.16.5.5]) by titan (Postfix) with ESMTP id 0FBA247A217; Fri, 2 Aug 2013 11:51:43 -0400 (EDT) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 72.84.113.162 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19ixsr61koYksBtKQ/X925FY5Td9nHRJIU= From: Jason Cooper To: zonque@gmail.com, nico@fluxnic.net Subject: [RFC PATCH V2 5/9] directly include needed headers Date: Fri, 2 Aug 2013 15:51:12 +0000 Message-Id: <7497c62ab2ea3f5373f9fe9ea99b1ccbc833821c.1375457714.git.jason@lakedaemon.net> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: In-Reply-To: References: <51F2A014.7000209@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130802_115216_740672_F3C9FC49 X-CRM114-Status: UNSURE ( 7.07 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) Cc: stigge@antcom.de, thomas.petazzoni@free-electrons.com, swarren@nvidia.com, Jason Cooper , devicetree@vger.kernel.org, s.neumann@raumfeld.com, broonie@kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-5.7 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 Signed-off-by: Jason Cooper --- atags.h | 2 ++ board.h | 3 +++ print.h | 2 ++ 3 files changed, 7 insertions(+) diff --git a/atags.h b/atags.h index 30e6ee7..83f93a1 100644 --- a/atags.h +++ b/atags.h @@ -1,6 +1,8 @@ #ifndef _ATAG_H #define _ATAG_H +#include "types.h" + #define ATAG_NONE 0x00000000 struct tag_header { diff --git a/board.h b/board.h index 5146db0..af64e94 100644 --- a/board.h +++ b/board.h @@ -1,6 +1,9 @@ #ifndef _BOARD_H #define _BOARD_H +#include "types.h" +#include "atags.h" + struct board { __u32 machid; __u32 system_rev; diff --git a/print.h b/print.h index 402def6..5320727 100644 --- a/print.h +++ b/print.h @@ -1,6 +1,8 @@ #ifndef _PRINT_H #define _PRINT_H +#include "types.h" + void putch(char c); void printhex(__u32 u); void putstr(const char *s);