From patchwork Sun Aug 13 13:58:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 800998 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-i2c-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xVgMx2jDtz9sR9 for ; Sun, 13 Aug 2017 23:59:25 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750922AbdHMN7X (ORCPT ); Sun, 13 Aug 2017 09:59:23 -0400 Received: from sauhun.de ([88.99.104.3]:46425 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750880AbdHMN7X (ORCPT ); Sun, 13 Aug 2017 09:59:23 -0400 Received: from localhost (p54B33788.dip0.t-ipconnect.de [84.179.55.136]) by pokefinder.org (Postfix) with ESMTPSA id BFCE92C33E2; Sun, 13 Aug 2017 15:59:21 +0200 (CEST) From: Wolfram Sang To: linux-i2c@vger.kernel.org Cc: Peter Rosin , Wolfram Sang Subject: [PATCH v2 1/2] i2c: mux: pca954x: move header file out of I2C realm Date: Sun, 13 Aug 2017 15:58:55 +0200 Message-Id: <20170813135856.3454-2-wsa@the-dreams.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170813135856.3454-1-wsa@the-dreams.de> References: <20170813135856.3454-1-wsa@the-dreams.de> Sender: linux-i2c-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org include/linux/i2c is not for client devices. Move the header file to a more appropriate location. Signed-off-by: Wolfram Sang --- drivers/i2c/muxes/i2c-mux-pca9541.c | 3 +-- drivers/i2c/muxes/i2c-mux-pca954x.c | 2 +- include/linux/{i2c => platform_data}/pca954x.h | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename include/linux/{i2c => platform_data}/pca954x.h (100%) diff --git a/drivers/i2c/muxes/i2c-mux-pca9541.c b/drivers/i2c/muxes/i2c-mux-pca9541.c index 9e318c9516c767..56e1f550b2ed0b 100644 --- a/drivers/i2c/muxes/i2c-mux-pca9541.c +++ b/drivers/i2c/muxes/i2c-mux-pca9541.c @@ -23,8 +23,7 @@ #include #include #include - -#include +#include /* * The PCA9541 is a bus master selector. It supports two I2C masters connected diff --git a/drivers/i2c/muxes/i2c-mux-pca954x.c b/drivers/i2c/muxes/i2c-mux-pca954x.c index f1751c290af67c..8de13d1ad223b2 100644 --- a/drivers/i2c/muxes/i2c-mux-pca954x.c +++ b/drivers/i2c/muxes/i2c-mux-pca954x.c @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/include/linux/i2c/pca954x.h b/include/linux/platform_data/pca954x.h similarity index 100% rename from include/linux/i2c/pca954x.h rename to include/linux/platform_data/pca954x.h