From patchwork Mon Jan 19 06:12:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Neelesh Gupta X-Patchwork-Id: 430300 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id CBCAB14027F for ; Mon, 19 Jan 2015 17:14:46 +1100 (AEDT) Received: from ozlabs.org (ozlabs.org [103.22.144.67]) by lists.ozlabs.org (Postfix) with ESMTP id B0D3A1A0D09 for ; Mon, 19 Jan 2015 17:14:46 +1100 (AEDT) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from e23smtp05.au.ibm.com (e23smtp05.au.ibm.com [202.81.31.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id F2B881A0C83 for ; Mon, 19 Jan 2015 17:14:44 +1100 (AEDT) Received: from /spool/local by e23smtp05.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 19 Jan 2015 16:14:38 +1000 Received: from d23dlp03.au.ibm.com (202.81.31.214) by e23smtp05.au.ibm.com (202.81.31.211) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Mon, 19 Jan 2015 16:14:36 +1000 Received: from d23relay09.au.ibm.com (d23relay09.au.ibm.com [9.185.63.181]) by d23dlp03.au.ibm.com (Postfix) with ESMTP id 33B173578048 for ; Mon, 19 Jan 2015 17:14:35 +1100 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay09.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t0J6EYsG38207578 for ; Mon, 19 Jan 2015 17:14:34 +1100 Received: from d23av03.au.ibm.com (localhost [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t0J6EXre015860 for ; Mon, 19 Jan 2015 17:14:33 +1100 Received: from localhost.localdomain ([9.126.239.57]) by d23av03.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t0J6EM1V015588 for ; Mon, 19 Jan 2015 17:14:31 +1100 To: skiboot@lists.ozlabs.org From: Neelesh Gupta Date: Mon, 19 Jan 2015 11:42:20 +0530 Message-ID: <20150119061156.22912.22151.stgit@localhost.localdomain> User-Agent: StGit/0.16 MIME-Version: 1.0 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15011906-0017-0000-0000-000000AEBB3B Subject: [Skiboot] [PATCH 1/2] rtc: Remove the not used prototype X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" This seem to be left behind during the previous commit for creating a generic interface of reading the cached tod on non-fsp systems. So, remove the old prototype fsp_rtc_get_cached_tod(). Signed-off-by: Neelesh Gupta --- include/fsp.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/fsp.h b/include/fsp.h index ead1680..9bb7fd8 100644 --- a/include/fsp.h +++ b/include/fsp.h @@ -730,8 +730,6 @@ extern void fsp_nvram_wait_open(void); /* RTC */ extern void fsp_rtc_init(void); -extern int fsp_rtc_get_cached_tod(uint32_t *year_month_day, - uint64_t *hour_minute_second_millisecond); /* ELOG */ extern void fsp_elog_read_init(void);