Received: by 10.192.165.148 with SMTP id m20csp68586imm; Thu, 19 Apr 2018 13:09:19 -0700 (PDT) X-Google-Smtp-Source: AIpwx49CI6VNwl1FYS/YE6/AgqocLLL98YBVOVqEbT4RyHufoxC0shnNT2BSbcf2kRRlhv+ONbvs X-Received: by 10.98.225.20 with SMTP id q20mr7059280pfh.142.1524168559572; Thu, 19 Apr 2018 13:09:19 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1524168559; cv=none; d=google.com; s=arc-20160816; b=AvTTIb5Q3ehsXP5TvvDzYzHoZLD8Cdk3FSeUUldbscoamuiJ0RZKp+g8oFOe5nXlAg P3Z/B1qt/vBDjAkua4Una2qaRnYK4W4XRmqaXFOt+exr6IvLySWX2aidgD6ae5IigItD J1T3xBYwFF8wH4yd/NyPan3Zq0ZpZXNaYubPTEypk5rJpEQJLlfiGzXD6ToXG8KE5pv7 FvU0x0IxFoYI/38g3+jjZOHjb7iw9yfvZsl7ndw5YUiyqj8OHRnn5jHxvyj8qaImxDpB fGwyPmxZKAr9BosbDp8sTy3QwMC2qm6QjRxmTcBn+6uJsvSk+aUJPNK8QmuG9OMTcOYH H+3w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=1FDhaMMADgvyRUYUoIieYzYu0sFSRTvj1eFmTO+/uqE=; b=nl4eNH3Iq57QU6im+R8nhoi4daR7Apolns1FhRUA6pB6Gm505GKx/wrygRgZ8qaEZW KUVLAagRF81aPwrJTMxjWx8iRHiamYJ97ChQIBLPNAr0BaKADyuGkzcOgycU8q+F0u/Y GAyshNeA5hnf4U+dte93uvYMT+DxqfgaKqzmDvu9qPViy430ogw70FtuXfifpXyB4Uqm pKGlCLfZAfnV3O++i6Wfl5eJcvy+P0VR84pK6zUuQvb52de261mhkH4m8KkdZ4FUNvaR UpWkxfEQVpsRa1FfszKVYReR/3wQ+HusLKlNXaLMYEYHkz7aqU2RJRez3DoOuSLdEAyF Apww== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w69si4012938pfd.332.2018.04.19.13.08.32; Thu, 19 Apr 2018 13:09:19 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753638AbeDSUBD (ORCPT + 99 others); Thu, 19 Apr 2018 16:01:03 -0400 Received: from sauhun.de ([88.99.104.3]:48082 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753568AbeDSUA6 (ORCPT ); Thu, 19 Apr 2018 16:00:58 -0400 Received: from localhost (unknown [46.183.103.8]) by pokefinder.org (Postfix) with ESMTPSA id 69974314F67; Thu, 19 Apr 2018 22:00:56 +0200 (CEST) From: Wolfram Sang To: linux-i2c@vger.kernel.org Cc: Wolfram Sang , Yoshinori Sato , Rich Felker , linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 5/7] i2c: i2c-pca-platform: move header to platform_data Date: Thu, 19 Apr 2018 22:00:11 +0200 Message-Id: <20180419200015.15095-6-wsa@the-dreams.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180419200015.15095-1-wsa@the-dreams.de> References: <20180419200015.15095-1-wsa@the-dreams.de> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This header only contains platform_data. Move it to the proper directory. Signed-off-by: Wolfram Sang --- arch/sh/boards/board-sh7785lcr.c | 2 +- drivers/i2c/busses/i2c-pca-platform.c | 2 +- include/linux/{ => platform_data}/i2c-pca-platform.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename include/linux/{ => platform_data}/i2c-pca-platform.h (100%) diff --git a/arch/sh/boards/board-sh7785lcr.c b/arch/sh/boards/board-sh7785lcr.c index d7d232dea33e..3cba60ff7aab 100644 --- a/arch/sh/boards/board-sh7785lcr.c +++ b/arch/sh/boards/board-sh7785lcr.c @@ -17,7 +17,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/drivers/i2c/busses/i2c-pca-platform.c b/drivers/i2c/busses/i2c-pca-platform.c index bc2707ffd409..de3fe6e828cb 100644 --- a/drivers/i2c/busses/i2c-pca-platform.c +++ b/drivers/i2c/busses/i2c-pca-platform.c @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/include/linux/i2c-pca-platform.h b/include/linux/platform_data/i2c-pca-platform.h similarity index 100% rename from include/linux/i2c-pca-platform.h rename to include/linux/platform_data/i2c-pca-platform.h -- 2.11.0