From patchwork Sat May 18 22:37:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Figa X-Patchwork-Id: 2589401 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 70268DF2E5 for ; Sat, 18 May 2013 22:37:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753488Ab3ERWhj (ORCPT ); Sat, 18 May 2013 18:37:39 -0400 Received: from mail-ee0-f44.google.com ([74.125.83.44]:41736 "EHLO mail-ee0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753460Ab3ERWhi (ORCPT ); Sat, 18 May 2013 18:37:38 -0400 Received: by mail-ee0-f44.google.com with SMTP id b57so3230632eek.17 for ; Sat, 18 May 2013 15:37:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=9wJbh99KVw8XO2amNER0V/5Z8/3IyvJ23dqhVXkmh9w=; b=aA7PsQW6Z1BbTVxzxYUCiUxwOMsyQ0h2hyLhm55W7pAUSkJqM0FwcWl7F59TzlWHjG tYYhIuBqGeswW7eC3qbRkdVNMQn5qBcfJcWrIyqLxCFKqvQL8Nlsfr0QZTNyHbAI1dnY BxZG+MX6aFs8QJ/vMPixI/je3UyqMWJcymrKCT9uO6nlEPgWqBjRr9hfvKRlodr5w/qD MqRsXm3Tf+dYDY8brMwX/dJSK068EQyfDgn92XS9xiLeyBMxw4w78BHeAiUn8dqqIwQX 89woLwR7UH8392eNFlJJx+IxmOB9v3mvRwqn0hNfI9VXIf8cZzzoJD5HsDXgepJwm8Y5 629A== X-Received: by 10.14.108.1 with SMTP id p1mr147664511eeg.31.1368916657026; Sat, 18 May 2013 15:37:37 -0700 (PDT) Received: from flatron.tomeq (87-207-52-162.dynamic.chello.pl. [87.207.52.162]) by mx.google.com with ESMTPSA id i3sm28210104eev.1.2013.05.18.15.37.35 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 18 May 2013 15:37:36 -0700 (PDT) From: Tomasz Figa To: linux-arm-kernel@lists.infradead.org Cc: linux-samsung-soc@vger.kernel.org, Kukjin Kim , Sylwester Nawrocki , =?UTF-8?q?Heiko=20St=C3=BCbner?= , Wim Van Sebroeck , linux-watchdog@vger.kernel.org, jhbird.choi@samsung.com, Tomasz Figa Subject: [PATCH 6/6] ARM: SAMSUNG: Remove unused plat/regs-watchdog.h header Date: Sun, 19 May 2013 00:37:07 +0200 Message-Id: <1368916627-23139-7-git-send-email-tomasz.figa@gmail.com> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1368916627-23139-1-git-send-email-tomasz.figa@gmail.com> References: <1368916627-23139-1-git-send-email-tomasz.figa@gmail.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org Since there are no remaining users of this header, it can be safely dropped. Signed-off-by: Tomasz Figa --- arch/arm/plat-samsung/include/plat/regs-watchdog.h | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 arch/arm/plat-samsung/include/plat/regs-watchdog.h diff --git a/arch/arm/plat-samsung/include/plat/regs-watchdog.h b/arch/arm/plat-samsung/include/plat/regs-watchdog.h deleted file mode 100644 index 4938492..0000000 --- a/arch/arm/plat-samsung/include/plat/regs-watchdog.h +++ /dev/null @@ -1,41 +0,0 @@ -/* arch/arm/mach-s3c2410/include/mach/regs-watchdog.h - * - * Copyright (c) 2003 Simtec Electronics - * http://www.simtec.co.uk/products/SWLINUX/ - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * S3C2410 Watchdog timer control -*/ - - -#ifndef __ASM_ARCH_REGS_WATCHDOG_H -#define __ASM_ARCH_REGS_WATCHDOG_H - -#define S3C_WDOGREG(x) ((x) + S3C_VA_WATCHDOG) - -#define S3C2410_WTCON S3C_WDOGREG(0x00) -#define S3C2410_WTDAT S3C_WDOGREG(0x04) -#define S3C2410_WTCNT S3C_WDOGREG(0x08) - -/* the watchdog can either generate a reset pulse, or an - * interrupt. - */ - -#define S3C2410_WTCON_RSTEN (0x01) -#define S3C2410_WTCON_INTEN (1<<2) -#define S3C2410_WTCON_ENABLE (1<<5) - -#define S3C2410_WTCON_DIV16 (0<<3) -#define S3C2410_WTCON_DIV32 (1<<3) -#define S3C2410_WTCON_DIV64 (2<<3) -#define S3C2410_WTCON_DIV128 (3<<3) - -#define S3C2410_WTCON_PRESCALE(x) ((x) << 8) -#define S3C2410_WTCON_PRESCALE_MASK (0xff00) - -#endif /* __ASM_ARCH_REGS_WATCHDOG_H */ - -