From patchwork Mon Dec 30 06:22:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3417671 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id CBAE4C02DC for ; Mon, 30 Dec 2013 06:25:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C98E8200F2 for ; Mon, 30 Dec 2013 06:25:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EC211200D7 for ; Mon, 30 Dec 2013 06:25:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751270Ab3L3GZv (ORCPT ); Mon, 30 Dec 2013 01:25:51 -0500 Received: from mail-pb0-f53.google.com ([209.85.160.53]:49643 "EHLO mail-pb0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751155Ab3L3GZv (ORCPT ); Mon, 30 Dec 2013 01:25:51 -0500 Received: by mail-pb0-f53.google.com with SMTP id ma3so11165322pbc.26 for ; Sun, 29 Dec 2013 22:25:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=XlhLRLG2PBb7YTJZws2eXgkXwWhcpj9iUrDVgC6+3xE=; b=K7gNAilgRGHgl+UKi/Wf7USda0E/k3w9NgS1mP0uvVR0Dcdiu74IyVeg4quDlb+SPG 3ZsBhKNbcHefBd/ND1NkNEn7Oujh4HpFRs/WTzhXcDNp9bAkNQilQogLmHmwG+nwMcLH p5ItYlct0R64hoILgytUrnR2tyHs2Dgtha39OY7pVQ+msrGOCXHdUmkMQPyou1U5tXLE kNXdOOwccx4tQhbwAffKO/Cg1G8Wzw4VrY0VUVDjiJBQ+JLn6+HNS/7RgPo1JeLmlIT/ RmGnFS/x4YUhCk8GHu8/ilslKFTdwE9cI51g2fbKWHkDc/BmGxp5yvI8ds6GV2tRzESt +ufA== X-Gm-Message-State: ALoCoQnDbAzyfxeoNcy2cBXoPOGVPWI+keb/eoeCLopyKWxoYavpv9GuzlQaclNpb+JsfMjpb7D6 X-Received: by 10.68.134.98 with SMTP id pj2mr66782100pbb.110.1388384750544; Sun, 29 Dec 2013 22:25:50 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id un5sm11645202pab.3.2013.12.29.22.25.48 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 29 Dec 2013 22:25:49 -0800 (PST) From: Sachin Kamat To: linux-fbdev@vger.kernel.org Cc: tomi.valkeinen@ti.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/4] video: ep93xx: Cleanup video-ep93xx.h header Date: Mon, 30 Dec 2013 11:52:10 +0530 Message-Id: <1388384533-20458-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit a3b2924547a7 ("ARM: ep93xx: move platform_data definitions") moved the file to the current location but forgot to remove the pointer to its previous location. Clean it up. While at it also change the header file protection macros appropriately. Signed-off-by: Sachin Kamat --- include/linux/platform_data/video-ep93xx.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/include/linux/platform_data/video-ep93xx.h b/include/linux/platform_data/video-ep93xx.h index d5ae11d7c453..92fc2b2232e7 100644 --- a/include/linux/platform_data/video-ep93xx.h +++ b/include/linux/platform_data/video-ep93xx.h @@ -1,9 +1,5 @@ -/* - * arch/arm/mach-ep93xx/include/mach/fb.h - */ - -#ifndef __ASM_ARCH_EP93XXFB_H -#define __ASM_ARCH_EP93XXFB_H +#ifndef __VIDEO_EP93XX_H +#define __VIDEO_EP93XX_H struct platform_device; struct fb_videomode; @@ -53,4 +49,4 @@ struct ep93xxfb_mach_info { void (*blank)(int blank_mode, struct fb_info *info); }; -#endif /* __ASM_ARCH_EP93XXFB_H */ +#endif /* __VIDEO_EP93XX_H */