From patchwork Thu Mar 12 13:18:59 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Frank Rowand X-Patchwork-Id: 5994851 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 27DD1BF90F for ; Thu, 12 Mar 2015 13:19:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 641512035E for ; Thu, 12 Mar 2015 13:19:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8CA3F2035D for ; Thu, 12 Mar 2015 13:19:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754636AbbCLNTE (ORCPT ); Thu, 12 Mar 2015 09:19:04 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:44693 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753602AbbCLNTC (ORCPT ); Thu, 12 Mar 2015 09:19:02 -0400 Received: by padet14 with SMTP id et14so20465153pad.11; Thu, 12 Mar 2015 06:19:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:reply-to:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=/4paL1URFRIvmgfaCXDGYhOS5QisSj0HrIlz30aOhwY=; b=bZIJH1CERVuIULPp5f4Tb8+X/rF50R7CyWcux2xbXK7qKpu8NNuO1XWmEiaifZN2aV L7bOSp2tNXBS/ZPpmGRkt88mEuh1JkhbxNX5bO99Dgtdmgxy5E/DhHRZG60ST4OBlAzf 1RSymSqjLFsIqBtoJgo1bhpVm81Rp1OOgMCBCHt/p4tqMEzhve9XYcZo2VyYo6gUbP2h qqxMvi2qZkfYYiSLOQX6EIko9cSx5ZNlMSOg+5sm1sr/5hUOCKjHFuR1/jIQtDoh0sfx clXuSNncZDZ9F9gfSRMZ8WFlzZdxmLqpjEFmUk9qt53Cat2PnCOdqoRDp0SjdjTwRxIh FLQQ== X-Received: by 10.66.171.199 with SMTP id aw7mr91701762pac.6.1426166341786; Thu, 12 Mar 2015 06:19:01 -0700 (PDT) Received: from [192.168.1.62] (c-107-3-131-153.hsd1.ca.comcast.net. [107.3.131.153]) by mx.google.com with ESMTPSA id bt2sm11140410pad.12.2015.03.12.06.18.59 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 12 Mar 2015 06:19:00 -0700 (PDT) Message-ID: <55019243.8090902@gmail.com> Date: Thu, 12 Mar 2015 06:18:59 -0700 From: Frank Rowand Reply-To: frowand.list@gmail.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: frowand.list@gmail.com, Grant Likely , Rob Herring , Michal Marek , Linux Kernel list , "devicetree@vger.kernel.org" , linux-kbuild@vger.kernel.org Subject: [Patch v3 3/3] dt: OF_UNITTEST make dependency broken, fix unittest.c after move References: <5501918D.2020000@gmail.com> In-Reply-To: <5501918D.2020000@gmail.com> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, 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 From: Frank Rowand Fix an of_unittest.c include path to account for the move of unittest.c into unittest-data/. Signed-off-by: Frank Rowand --- drivers/of/unittest-data/unittest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: b/drivers/of/unittest-data/unittest.c =================================================================== --- a/drivers/of/unittest-data/unittest.c +++ b/drivers/of/unittest-data/unittest.c @@ -23,7 +23,7 @@ #include #include -#include "of_private.h" +#include "../of_private.h" static struct selftest_results { int passed;