From patchwork Fri Jan 27 21:53:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 92728 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp445265qgi; Fri, 27 Jan 2017 13:55:47 -0800 (PST) X-Received: by 10.223.151.53 with SMTP id r50mr8887792wrb.129.1485554147630; Fri, 27 Jan 2017 13:55:47 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id 75si4266451wmh.36.2017.01.27.13.55.47; Fri, 27 Jan 2017 13:55:47 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5AB4CB3887; Fri, 27 Jan 2017 22:55:17 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EenwmkImoIGz; Fri, 27 Jan 2017 22:55:17 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BA22BB3889; Fri, 27 Jan 2017 22:54:50 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 95256A75F3 for ; Fri, 27 Jan 2017 22:54:36 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vpwRvn9R8Hlh for ; Fri, 27 Jan 2017 22:54:36 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by theia.denx.de (Postfix) with ESMTPS id F3A9CA7607 for ; Fri, 27 Jan 2017 22:54:26 +0100 (CET) Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-11.nifty.com with ESMTP id v0RLs2XD015159; Sat, 28 Jan 2017 06:54:12 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com v0RLs2XD015159 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1485554053; bh=OSK9YhjY8fjoz19gj0EOXvAlEjfbIDJBWaEcXDgM8Go=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ilMYJOUeg3Qvx5S063J/hqsjuvkpDjmvx9hrG8p7VAWzHy1X0TgCemnIttKNVB4kJ NYxdX/lTQIh/rzOC8xAao+0dVTsPydvkfY1PKoK/6B+gwheOZcH3PqLYv6bZLIDZz8 2wMA+ailFpcvoXEglNje7ureSc28pzQwdQ6naa+lrWslfPIZ0fXyzUl5jG5Vbfm+ZW fvn7Rcv4DDNNz/AsQECZWXjbJTx43y/gV21hvBl6t2fz0dM9c4lQ6KUsv/+Efamo5V /mgyVuyATlrJyJNV9KBcm1F/tT5If9hvs5Inq0cKdHdYMx8QBulTPcb8pA8wPtVb8b Z7kcsdFlz+UIQ== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Sat, 28 Jan 2017 06:53:55 +0900 Message-Id: <1485554036-29320-16-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1485554036-29320-1-git-send-email-yamada.masahiro@socionext.com> References: <1485554036-29320-1-git-send-email-yamada.masahiro@socionext.com> Subject: [U-Boot] [PATCH 15/16] i2c: uniphier(-f): remove unneeded #include X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This include is unnecessary for low-level drivers. Signed-off-by: Masahiro Yamada --- drivers/i2c/i2c-uniphier-f.c | 1 - drivers/i2c/i2c-uniphier.c | 1 - 2 files changed, 2 deletions(-) -- 2.7.4 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot Reviewed-by: Heiko Schocher diff --git a/drivers/i2c/i2c-uniphier-f.c b/drivers/i2c/i2c-uniphier-f.c index 8bfa916..e212c13 100644 --- a/drivers/i2c/i2c-uniphier-f.c +++ b/drivers/i2c/i2c-uniphier-f.c @@ -12,7 +12,6 @@ #include #include #include -#include #include #include diff --git a/drivers/i2c/i2c-uniphier.c b/drivers/i2c/i2c-uniphier.c index f391f11..73575e9 100644 --- a/drivers/i2c/i2c-uniphier.c +++ b/drivers/i2c/i2c-uniphier.c @@ -12,7 +12,6 @@ #include #include #include -#include #include #include