From patchwork Fri Jan 3 09:24:37 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3430701 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 A82E2C02DC for ; Fri, 3 Jan 2014 09:28:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7C31B20136 for ; Fri, 3 Jan 2014 09:28:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7FD582012B for ; Fri, 3 Jan 2014 09:28:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751096AbaACJ21 (ORCPT ); Fri, 3 Jan 2014 04:28:27 -0500 Received: from mail-pa0-f43.google.com ([209.85.220.43]:53716 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750841AbaACJ2Z (ORCPT ); Fri, 3 Jan 2014 04:28:25 -0500 Received: by mail-pa0-f43.google.com with SMTP id bj1so15595773pad.2 for ; Fri, 03 Jan 2014 01:28:24 -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=Hd7MVbbhr8q2PbQRCz3lwio8omzDIGZayXkyO5n76RI=; b=Qji6kfa04zB+XVBwuRyXzhXiXsQx6VsUiTsHPCxj/XujuVfkkycXDbAkRhANOu1lMF 49mKiqNHUu+lYMR1lFA7th6y9iG80VGHXyVGEqNGBh2y32PAZB6wJqlpIs00j0ednq81 2ODgQGPwuWEWwiZD8FofbJsqKEFoNpcWuivflvtjK59R27j20W/AEHawviDOyi/Y6KcG bBkeFWN1TkYdFHJTby9huyN38iRbw0x7JdhYGfwUX3XkKCBuJt2AhH8sIFpudRnYKuMG TKmVwxXazidI1AyvwI1oKw2NMzYfpNSbMs6mobJDJjqRetTCV6TuD4ulFJEy805Btpo+ QUIg== X-Gm-Message-State: ALoCoQka+oft2Ybk2D/JczlqcpHIlJLjfP/LcTa0BeV3wNPvt7TR6GCyUv+qu0StrgIuyjKtfck9 X-Received: by 10.68.184.194 with SMTP id ew2mr92506818pbc.100.1388741304781; Fri, 03 Jan 2014 01:28:24 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id pq1sm248528pbc.8.2014.01.03.01.28.22 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 03 Jan 2014 01:28:24 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/3] ARM: S3C24XX: Remove invalid code from hardware.h Date: Fri, 3 Jan 2014 14:54:37 +0530 Message-Id: <1388741079-16202-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-7.4 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 Remove the code that is not referenced anywhere. While at it also remove incorrect file path. Signed-off-by: Sachin Kamat --- arch/arm/mach-s3c24xx/include/mach/hardware.h | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/arch/arm/mach-s3c24xx/include/mach/hardware.h b/arch/arm/mach-s3c24xx/include/mach/hardware.h index a6cc14a092fc..dedd3837c193 100644 --- a/arch/arm/mach-s3c24xx/include/mach/hardware.h +++ b/arch/arm/mach-s3c24xx/include/mach/hardware.h @@ -1,5 +1,4 @@ -/* arch/arm/mach-s3c2410/include/mach/hardware.h - * +/* * Copyright (c) 2003 Simtec Electronics * Ben Dooks * @@ -17,20 +16,9 @@ extern unsigned int s3c2410_modify_misccr(unsigned int clr, unsigned int chg); -#ifdef CONFIG_CPU_S3C2440 - -extern int s3c2440_set_dsc(unsigned int pin, unsigned int value); - -#endif /* CONFIG_CPU_S3C2440 */ - #endif /* __ASSEMBLY__ */ #include #include -/* machine specific hardware definitions should go after this */ - -/* currently here until moved into config (todo) */ -#define CONFIG_NO_MULTIWORD_IO - #endif /* __ASM_ARCH_HARDWARE_H */