From patchwork Fri Feb 14 06:56:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3650451 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 094D29F1EE for ; Fri, 14 Feb 2014 07:02:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 304962021B for ; Fri, 14 Feb 2014 07:02:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 58E3420203 for ; Fri, 14 Feb 2014 07:02:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751145AbaBNHCI (ORCPT ); Fri, 14 Feb 2014 02:02:08 -0500 Received: from mail-pa0-f53.google.com ([209.85.220.53]:62727 "EHLO mail-pa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751135AbaBNHCH (ORCPT ); Fri, 14 Feb 2014 02:02:07 -0500 Received: by mail-pa0-f53.google.com with SMTP id lj1so11868723pab.40 for ; Thu, 13 Feb 2014 23:02:06 -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=VtXogZ3+vrcbcx9TL8pjf90zKKpuzNAfgPvrISSXOes=; b=dM1EdqMPRM1YDrOTMf+IpK4+T2EsluII3pnxI8/rq+rbQHLFaxus0w4eVFZ9OAhPom p+wE2LzlrQ+w+JfP4kzzTS63b/jKzVwUWiK8NuWx55wN74ouTJrv6SrRkWkUSFTOtqA1 sr0ISp1UtbGacCRR86arK+TpyUKU/n28E/vDo+Dl8nkfE4Rm4mIC+yewF9GVQrX/0qqq qYwUczoqjW2S9Nwwr9C/lOqjZNl1sl60aPTB0wNPdKgQYZrILp3XXAD0ggRztpZiZsP1 SwapzcLocTlUQkJiIWngOmrCLbFxaQDbyARg3K654cNvcZ/64VAmhuWn10G9naFdF3Qp boVA== X-Gm-Message-State: ALoCoQnf6xRnnWcTR4zqlzJ9e7Pm4Ku2YKBhguAtn71Ky555psXMIcSnuNPHs5U0y2fkGUT5Jwz0 X-Received: by 10.68.180.97 with SMTP id dn1mr6958021pbc.15.1392361325499; Thu, 13 Feb 2014 23:02:05 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id sx8sm33420800pab.5.2014.02.13.23.02.03 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 13 Feb 2014 23:02:04 -0800 (PST) From: Sachin Kamat To: linux-spi@vger.kernel.org Cc: broonie@kernel.org, sachin.kamat@linaro.org Subject: [PATCH 1/1] spi/s3c64xx: Trivial cleanup in header file Date: Fri, 14 Feb 2014 12:26:17 +0530 Message-Id: <1392360977-21183-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-7.5 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 436d42c61c3e ("ARM: samsung: move platform_data definitions") moved the files 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/spi-s3c64xx.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/linux/platform_data/spi-s3c64xx.h b/include/linux/platform_data/spi-s3c64xx.h index 8447f634c7f5..d3889b98a1a1 100644 --- a/include/linux/platform_data/spi-s3c64xx.h +++ b/include/linux/platform_data/spi-s3c64xx.h @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-samsung/include/plat/s3c64xx-spi.h - * +/* * Copyright (C) 2009 Samsung Electronics Ltd. * Jaswinder Singh * @@ -8,8 +7,8 @@ * published by the Free Software Foundation. */ -#ifndef __S3C64XX_PLAT_SPI_H -#define __S3C64XX_PLAT_SPI_H +#ifndef __SPI_S3C64XX_H +#define __SPI_S3C64XX_H #include @@ -68,4 +67,4 @@ extern int s3c64xx_spi2_cfg_gpio(void); extern struct s3c64xx_spi_info s3c64xx_spi0_pdata; extern struct s3c64xx_spi_info s3c64xx_spi1_pdata; extern struct s3c64xx_spi_info s3c64xx_spi2_pdata; -#endif /* __S3C64XX_PLAT_SPI_H */ +#endif /*__SPI_S3C64XX_H */