From patchwork Sun May 21 20:37:43 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 765184 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3wWDBv5TzQz9s5L for ; Mon, 22 May 2017 06:38:15 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932297AbdEUUht (ORCPT ); Sun, 21 May 2017 16:37:49 -0400 Received: from sauhun.de ([88.99.104.3]:55103 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756771AbdEUUhs (ORCPT ); Sun, 21 May 2017 16:37:48 -0400 Received: from localhost (p54B335A2.dip0.t-ipconnect.de [84.179.53.162]) by pokefinder.org (Postfix) with ESMTPSA id 39E8B2C36FD; Sun, 21 May 2017 22:37:47 +0200 (CEST) From: Wolfram Sang To: linux-i2c@vger.kernel.org Cc: Wolfram Sang , Vadim Pasternak , Michael Shych , Peter Rosin , linux-kernel@vger.kernel.org Subject: [PATCH 2/2] i2c: mux: mlxcpld: move header file out of I2C realm Date: Sun, 21 May 2017 22:37:43 +0200 Message-Id: <20170521203743.6514-3-wsa@the-dreams.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170521203743.6514-1-wsa@the-dreams.de> References: <20170521203743.6514-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-mlxcpld.c | 2 +- include/linux/{i2c => platform_data/x86}/mlxcpld.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename include/linux/{i2c => platform_data/x86}/mlxcpld.h (100%) diff --git a/drivers/i2c/muxes/i2c-mux-mlxcpld.c b/drivers/i2c/muxes/i2c-mux-mlxcpld.c index e53f2abd135070..63458b025ef904 100644 --- a/drivers/i2c/muxes/i2c-mux-mlxcpld.c +++ b/drivers/i2c/muxes/i2c-mux-mlxcpld.c @@ -40,7 +40,7 @@ #include #include #include -#include +#include #define CPLD_MUX_MAX_NCHANS 8 diff --git a/include/linux/i2c/mlxcpld.h b/include/linux/platform_data/x86/mlxcpld.h similarity index 100% rename from include/linux/i2c/mlxcpld.h rename to include/linux/platform_data/x86/mlxcpld.h