From patchwork Mon Dec 30 06:26:42 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3417741 Return-Path: X-Original-To: patchwork-linux-spi@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 39A07C02DC for ; Mon, 30 Dec 2013 06:30:21 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6767C200F3 for ; Mon, 30 Dec 2013 06:30:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9DDBD200F2 for ; Mon, 30 Dec 2013 06:30:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751408Ab3L3GaT (ORCPT ); Mon, 30 Dec 2013 01:30:19 -0500 Received: from mail-pd0-f170.google.com ([209.85.192.170]:55974 "EHLO mail-pd0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751155Ab3L3GaS (ORCPT ); Mon, 30 Dec 2013 01:30:18 -0500 Received: by mail-pd0-f170.google.com with SMTP id g10so11055730pdj.29 for ; Sun, 29 Dec 2013 22:30:17 -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=UYBUcQNOXp61isyUkPmWvv4WtR6EU9FjmPiw5vlxcAQ=; b=V7Y8dfPzm6cDRh4Nj2ukpPVMG8dsPaQIGllC23fQS4PYn3O8oLk3tuH1qTpiQQ38ly +3K7nayFArHr5r1VZphnpiBTVVGCn9A5InQzifZa0jiJb3I5nJLoEgNEeUTRWGUD13BG wFI8rZBE32+WnMWMNyFyC+JMpAkHphD3daQ0ccVgrygOXaKolYG6ZFLBHl1yrLe7Az2H +sriMZoMm0ObQqG/QTHdXQTvhv7FZpttObCsanN54XL3JwkvW9QwANn7ff+LYV1aaLAy MpBZ4Qbrtqt5w/7SFq16nGZ9ih6Lxm+nuAa/EEVdG/mfif+lnA6d+pol8Fi7wxLedh2J AvHg== X-Gm-Message-State: ALoCoQnhIz8BEAT7af5J3IF2L2ZfdRftiL7/nbdepZXBkgYFhhZxF+Twn5g+W3a9lbmzQOw9eI+o X-Received: by 10.66.170.138 with SMTP id am10mr67100093pac.51.1388385017805; Sun, 29 Dec 2013 22:30:17 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id gg10sm78866000pbc.46.2013.12.29.22.30.15 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 29 Dec 2013 22:30:17 -0800 (PST) From: Sachin Kamat To: linux-spi@vger.kernel.org Cc: broonie@kernel.org, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/1] spi: nuc900: Cleanup spi-nuc900.h header Date: Mon, 30 Dec 2013 11:56:42 +0530 Message-Id: <1388384802-32660-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.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 54ecf4f05637 ("ARM: w90x900: 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/spi-nuc900.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/include/linux/platform_data/spi-nuc900.h b/include/linux/platform_data/spi-nuc900.h index 2c4e0c128501..4b3f46832e19 100644 --- a/include/linux/platform_data/spi-nuc900.h +++ b/include/linux/platform_data/spi-nuc900.h @@ -1,6 +1,4 @@ /* - * arch/arm/mach-w90x900/include/mach/nuc900_spi.h - * * Copyright (c) 2009 Nuvoton technology corporation. * * Wan ZongShun @@ -11,8 +9,8 @@ * */ -#ifndef __ASM_ARCH_SPI_H -#define __ASM_ARCH_SPI_H +#ifndef __SPI_NUC900_H +#define __SPI_NUC900_H extern void mfp_set_groupg(struct device *dev, const char *subname); @@ -32,4 +30,4 @@ struct nuc900_spi_chip { unsigned char bits_per_word; }; -#endif /* __ASM_ARCH_SPI_H */ +#endif /* __SPI_NUC900_H */