From patchwork Thu Mar 12 05:37:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Frank Rowand X-Patchwork-Id: 5990771 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 E309FBF90F for ; Thu, 12 Mar 2015 05:37:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 18EDB20396 for ; Thu, 12 Mar 2015 05:37:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 361672038F for ; Thu, 12 Mar 2015 05:37:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751014AbbCLFhW (ORCPT ); Thu, 12 Mar 2015 01:37:22 -0400 Received: from mail-pa0-f47.google.com ([209.85.220.47]:35384 "EHLO mail-pa0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751289AbbCLFhV (ORCPT ); Thu, 12 Mar 2015 01:37:21 -0400 Received: by pabli10 with SMTP id li10so17635537pab.2; Wed, 11 Mar 2015 22:37:21 -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=PgHLQH4uYWdaN2R9h4BDmsvaTozS7XmfjOV1EK/wlqAM0OhlrF1z7VqSnVYbP2ABtZ VV4xWHstxifXJ+7FJyh8hnZg6/EYv77w/Nm7TEZ1Xdlv5pYzaCzm1idSXYx66K1ElrpN 4tm2/bBK24KUFCcdsTHC2gztfgHPksc2S24jNLsOA2TS6gfFoZ9KBsFCp2RqtAwvmNPb PVQU6PrlzoZe3wzsvMQa3mXqy2N1p6vTh6BsO6QHUr7decaNoyd9Yg99xTxnSGLGyd8X 9tqH0iSoK8DY/WS3rpDy7wHAY0kziSLoqlXbZwE1X6NLFIBvTwyrdvlzoow1lWbWJZxu aRrw== X-Received: by 10.70.138.69 with SMTP id qo5mr7800612pdb.124.1426138641228; Wed, 11 Mar 2015 22:37:21 -0700 (PDT) Received: from [172.26.78.249] ([64.211.224.253]) by mx.google.com with ESMTPSA id t5sm8761954pde.51.2015.03.11.22.37.19 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 11 Mar 2015 22:37:20 -0700 (PDT) Message-ID: <5501260E.4020509@gmail.com> Date: Wed, 11 Mar 2015 22:37:18 -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 3/3] dt: OF_UNITTEST make dependency broken, fix unittest.c after move References: <55012531.8040608@gmail.com> In-Reply-To: <55012531.8040608@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;