From patchwork Fri Jun 27 06:07:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olof Johansson X-Patchwork-Id: 4433561 Return-Path: X-Original-To: patchwork-linux-spi@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 107019F319 for ; Fri, 27 Jun 2014 06:05:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 34B7220320 for ; Fri, 27 Jun 2014 06:05:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5EAB72039D for ; Fri, 27 Jun 2014 06:05:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751836AbaF0GFg (ORCPT ); Fri, 27 Jun 2014 02:05:36 -0400 Received: from mail-pa0-f42.google.com ([209.85.220.42]:59219 "EHLO mail-pa0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751127AbaF0GFg (ORCPT ); Fri, 27 Jun 2014 02:05:36 -0400 Received: by mail-pa0-f42.google.com with SMTP id lj1so4171726pab.15 for ; Thu, 26 Jun 2014 23:05:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=5fG/lXoH0p21ybHqNdOu8Zj+/ZXuT3a7YjVj8fXuEws=; b=eapngg7EC47Gwad8CFKkSBq9zwZu3LK11aH/GNBzdHHKYRj2NJ7+fs1B5ivG4IrrzB KqQJJFuOP65qbzblRdUqTfoOiW2IPiGUL0DtNp0R3U8fkmcXKG25U6N3DPVmVXPRVW0I E/42WYf73vOlMiw+BSL8PFRKI2bFMubrHu8wT+fDvetYdIcnNI2O3ZwFMDNUGFY+s4Jw /hlCh+ye5qhl9LSXHRZytiUdx2u+dH3Ni5CKDS9Q/eCFWch+50o+La3mQK8O7bf9p1QQ GBqV17F+qpVeGfBiySBpWQKmgfacmpC0h22jf5LxjxLqL3pELtMpARwBrIr+sW9mH/xS lgfA== X-Gm-Message-State: ALoCoQkEUzNqsxFOBalTRmcR8UrlUIFWYFksy4FMTh8rJSdbo1qQYZdSCIFFXU/ZJSZ79soAUDlK X-Received: by 10.68.103.98 with SMTP id fv2mr27965188pbb.18.1403849135643; Thu, 26 Jun 2014 23:05:35 -0700 (PDT) Received: from brutus.lixom.net (173-13-129-225-sfba.hfc.comcastbusiness.net. [173.13.129.225]) by mx.google.com with ESMTPSA id ia2sm12895158pbb.32.2014.06.26.23.05.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 26 Jun 2014 23:05:34 -0700 (PDT) From: Olof Johansson To: Mark Brown Cc: linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org, Olof Johansson , Himangi Saraogi , Julia Lawall Subject: [PATCH] spi: omap-uwire: fix compilation failure Date: Thu, 26 Jun 2014 23:07:38 -0700 Message-Id: <1403849258-21779-1-git-send-email-olof@lixom.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <20140620203858.GA14718@himangi-Dell> References: <20140620203858.GA14718@himangi-Dell> Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 Patch 'spi: omap-uwire: use devm_ functions' (b3f6a57506b8) introduced a build error due to a missing include file. Add it. Cc: Himangi Saraogi Cc: Julia Lawall Signed-off-by: Olof Johansson --- drivers/spi/spi-omap-uwire.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-omap-uwire.c b/drivers/spi/spi-omap-uwire.c index cbf67f9..a05359c 100644 --- a/drivers/spi/spi-omap-uwire.c +++ b/drivers/spi/spi-omap-uwire.c @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include