Received: by 10.192.165.156 with SMTP id m28csp1662690imm; Thu, 12 Apr 2018 01:01:14 -0700 (PDT) X-Google-Smtp-Source: AIpwx4/gEPJK+uE9tgphSxida1XgAa09v7jnzYk6+tLPT/NJW1gJR0NubEvTlAOZX0ryrt3X4PoP X-Received: by 10.98.185.23 with SMTP id z23mr6811837pfe.180.1523520074613; Thu, 12 Apr 2018 01:01:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523520074; cv=none; d=google.com; s=arc-20160816; b=n6y9y9+wQ+BuGZGtWZFL6M5+DyG6PzvtLH/wsalhewUvF85PpnmwXPETOVzn+f6648 a9XXB2QigB/uvlzCea+QvztwV3ZJB+I1JiQJcJ+xLG4y/4AQukB/C8ENoA5Y5XB07MP0 gApvQTiSf53SahtlDiJDAxfzcPfvWe2AA+fvTDfRnAuJMRZYvDe9UjbsQkcoq8PWIVjJ 50Lc+ZP2mKcUMurg1fn61i7TPNuy2bSMBsVKKhOLutgO0yH61tAgjZ1dQqWCiY8ZzbVM bAX3nUyxBgO3XEc8OBgI1sX9V44QUoogGR9gQxT68XSroJR+ZemyQuNCeGy7NK7Fclw6 nJzQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:content-disposition :mime-version:message-id:subject:cc:to:from:date :arc-authentication-results; bh=jRGjnVcLCWziFw2Em3JlUXnEaSWNmaK8yzKfOfkqQ2U=; b=H2gVJ1PEEUcgda2D2WFUcLgcsgzbWn25APRQ6Ou+smBsOyCdg/Z70JS/t8+LSOkF/c Lc49awZunHd2iPO8aDyIGtXUoLUtpkA/wqD346HJ1g2qPZ2PMVIYafznbbwstz4mYMHx mKbEGrEeNZV5B2OW4KyJ1fndp9o1O4O9Y5bR00JiGCCvdU8pp6mWFU3Nm+UnlRl/sHCF E0wumFydBBPpGdgumrQKPHXUNvtNlGwkpEvudauLQ6hePhrouPt3J77q2Dbykbupt4yD KcmdKFLXTRtcC1fnRXPCJyHiaSdibdeOHfuMLfumQjaNIZ7SxFJHTz6bnC9qeNT+u1/C jNTQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i1si1877575pgc.229.2018.04.12.01.00.37; Thu, 12 Apr 2018 01:01:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752291AbeDLH5l (ORCPT + 99 others); Thu, 12 Apr 2018 03:57:41 -0400 Received: from mga09.intel.com ([134.134.136.24]:29451 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751759AbeDLH5k (ORCPT ); Thu, 12 Apr 2018 03:57:40 -0400 X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Apr 2018 00:57:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,440,1517904000"; d="scan'208";a="50163537" Received: from sofia.sh.intel.com (HELO sofia) ([10.239.147.120]) by orsmga002.jf.intel.com with ESMTP; 12 Apr 2018 00:57:37 -0700 Date: Thu, 12 Apr 2018 15:57:01 +0800 From: "Liu, Changcheng" To: tglx@linutronix.de Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org Subject: [PATCH] timers: remove tvec_base struct declaration Message-ID: <20180412075701.GA38952@sofia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org timer wheel is implemented by timer_base. tvec_base is obsoleted, so remove the type declaration. Signed-off-by: Liu Changcheng diff --git a/include/linux/timer.h b/include/linux/timer.h index 2448f9c..7b066fd 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h @@ -8,8 +8,6 @@ #include #include -struct tvec_base; - struct timer_list { /* * All fields that change during normal runtime grouped to the -- 2.7.4