From patchwork Tue Aug 18 13:12:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Hecht X-Patchwork-Id: 7031361 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 296D49F344 for ; Tue, 18 Aug 2015 13:12:27 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4E1A42065D for ; Tue, 18 Aug 2015 13:12:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5D2DE20796 for ; Tue, 18 Aug 2015 13:12:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752691AbbHRNMZ (ORCPT ); Tue, 18 Aug 2015 09:12:25 -0400 Received: from mail-wi0-f169.google.com ([209.85.212.169]:38798 "EHLO mail-wi0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752606AbbHRNMY (ORCPT ); Tue, 18 Aug 2015 09:12:24 -0400 Received: by wicja10 with SMTP id ja10so108176119wic.1 for ; Tue, 18 Aug 2015 06:12:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=fGeIdEJzU14zAm+dZYYJbNZJ7hdlpp+gTyOHkbI+CO4=; b=NamzxVsEJojqZfHSVoWmNkhTQlV4BGREY/CVo43yqx44RyCz+QgeTyuyBgUqLiK/By XjIWnM2puvCnkjE97nlOhKW+LoVgF462w6KZp9nU45rmtRuNL+UxvEk8htXf6fSMQQpG uLGRkar7QZfFB5P+8E0a887GRu9piRSfS0XO0vzo6ISGoQJ5U3MdDK+L6Pq2Vl53R9GJ ofuOQjihqEpZ+pNuLdPHNytClIwvfo8oQEeB2UFE111TjdTNe5NUKWHUG/MNi+FvmpWg NrhzcLRc7doSpiRTCR0vae2K4YNm8fEaD+QfHp60Nsr3VEtXHnfgJjB2J3WP6MKHbBV3 wVlw== X-Received: by 10.180.12.148 with SMTP id y20mr41957779wib.80.1439903543624; Tue, 18 Aug 2015 06:12:23 -0700 (PDT) Received: from groucho.site (tsn109-201-154-192.dyn.nltelcom.net. [109.201.154.192]) by smtp.gmail.com with ESMTPSA id s16sm21318735wib.16.2015.08.18.06.12.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 18 Aug 2015 06:12:22 -0700 (PDT) From: Ulrich Hecht To: horms@verge.net.au, linux-sh@vger.kernel.org Cc: magnus.damm@gmail.com, geert+renesas@glider.be, Ulrich Hecht Subject: [PATCH 2/2] ARM: shmobile: Kconfig: remove unused SHMOBILE_TIMER_HZ section Date: Tue, 18 Aug 2015 15:12:18 +0200 Message-Id: <1439903538-19201-3-git-send-email-ulrich.hecht+renesas@gmail.com> X-Mailer: git-send-email 2.4.6 In-Reply-To: <1439903538-19201-1-git-send-email-ulrich.hecht+renesas@gmail.com> References: <1439903538-19201-1-git-send-email-ulrich.hecht+renesas@gmail.com> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 Obsoleted by removal of legacy platforms. Signed-off-by: Ulrich Hecht Acked-by: Geert Uytterhoeven --- arch/arm/mach-shmobile/Kconfig | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig index 7f2e053..88734a5 100644 --- a/arch/arm/mach-shmobile/Kconfig +++ b/arch/arm/mach-shmobile/Kconfig @@ -98,23 +98,3 @@ config ARCH_SH73A0 comment "Renesas ARM SoCs System Configuration" endif - -if ARCH_SHMOBILE - -menu "Timer and clock configuration" - -config SHMOBILE_TIMER_HZ - int "Kernel HZ (jiffies per second)" - range 32 1024 - default "128" - help - Allows the configuration of the timer frequency. It is customary - to have the timer interrupt run at 1000 Hz or 100 Hz, but in the - case of low timer frequencies other values may be more suitable. - Renesas ARM SoC systems using a 32768 Hz RCLK for clock events may - want to select a HZ value such as 128 that can evenly divide RCLK. - A HZ value that does not divide evenly may cause timer drift. - -endmenu - -endif