From patchwork Mon Aug 15 08:35:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: axel lin X-Patchwork-Id: 1066952 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7F8Zxmg015869 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 15 Aug 2011 08:36:20 GMT Received: from canuck.infradead.org ([134.117.69.58]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qsse3-0000lA-6m; Mon, 15 Aug 2011 08:35:39 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qsse2-0005uC-NV; Mon, 15 Aug 2011 08:35:38 +0000 Received: from mail-yw0-f49.google.com ([209.85.213.49]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qssdy-0005tt-Ob for linux-arm-kernel@lists.infradead.org; Mon, 15 Aug 2011 08:35:35 +0000 Received: by ywp17 with SMTP id 17so3213583ywp.36 for ; Mon, 15 Aug 2011 01:35:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=subject:from:to:cc:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=Uz0BNnXpN/P3n4t0DePHDzf1uILiQjE3JTn8LT4xN5k=; b=RmThqiRuZqFeglbraGs2SsylhZprk0RmeakzBonjqvKj8KeCuGa9dsFxMG1NCyaVcT kBd5GjOkNMpySp6ZRyWJoNTpTWRApU3W2N+qLSc8SZ54xDkxs6mEkgQApgNosiusF9QO OtyVWU+i6UncrA5Nae2vrT4jxmwgHz/ZMWBvY= Received: by 10.236.170.9 with SMTP id o9mr1002533yhl.191.1313397331985; Mon, 15 Aug 2011 01:35:31 -0700 (PDT) Received: from [218.172.235.146] (218-172-235-146.dynamic.hinet.net [218.172.235.146]) by mx.google.com with ESMTPS id y6sm4024730yhl.68.2011.08.15.01.35.29 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 15 Aug 2011 01:35:31 -0700 (PDT) Subject: [PATCH] video: nuc900fb: remove include of mach/clkdev.h From: Axel Lin To: linux-kernel@vger.kernel.org Date: Mon, 15 Aug 2011 16:35:23 +0800 Message-ID: <1313397323.25061.2.camel@phoenix> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110815_043535_052499_B63103AF X-CRM114-Status: GOOD ( 14.09 ) X-Spam-Score: -0.8 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.8 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (axel.lin[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.213.49 listed in list.dnswl.org] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.0 T_TO_NO_BRKTS_FREEMAIL To: misformatted and free email service Cc: linux-fbdev@vger.kernel.org, Paul Mundt , linux-arm-kernel@lists.infradead.org, Wan ZongShun X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 15 Aug 2011 08:36:20 +0000 (UTC) Since commit aa3831cf9d29cfeaebd8c2169378b74111364487 "ARM: Consolidate the clkdev header files", the header file arch/arm/mach-nuc93x/include/mach/clkdev.h is removed. This patch fixes below build error: drivers/video/nuc900fb.c:42:25: error: mach/clkdev.h: No such file or directory make[2]: *** [drivers/video/nuc900fb.o] Error 1 make[1]: *** [drivers/video] Error 2 make: *** [drivers] Error 2 Signed-off-by: Axel Lin --- drivers/video/nuc900fb.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/video/nuc900fb.c b/drivers/video/nuc900fb.c index 0fff5978..37dd850 100644 --- a/drivers/video/nuc900fb.c +++ b/drivers/video/nuc900fb.c @@ -39,7 +39,6 @@ #include #include #include -#include #include "nuc900fb.h"