From patchwork Mon Nov 19 18:25:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bill Pemberton X-Patchwork-Id: 200061 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from mail-pa0-f56.google.com (mail-pa0-f56.google.com [209.85.220.56]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 248AD2C0093 for ; Tue, 20 Nov 2012 05:28:23 +1100 (EST) Received: by mail-pa0-f56.google.com with SMTP id fa1sf3543794pad.11 for ; Mon, 19 Nov 2012 10:28:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlegroups.com; s=20120806; h=mime-version:x-beenthere:received-spf:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references:x-original-sender :x-original-authentication-results:reply-to:precedence:mailing-list :list-id:x-google-group-id:list-post:list-help:list-archive:sender :list-subscribe:list-unsubscribe:content-type; bh=4pnr4H+aWWhi4Slf593fjO5nWzgjVY+tEm3EBFvRCTU=; b=rRhSHLzBkwk4S1eu4zTBZaaV9kUF700uFxem2NlxHV5cGRVw1kMtBTavU5dH1D9qF3 t4sCdcJ/teiWxsNDUOXTNkfU5DijEP33BLJPKSKZMbGqPz3Gci/c7UNk6uGQ400nAm8g lpLAfK5Dr83Wt37/Y/7bCzR7D7ZSvwXOK2fXaFUtEwMnKVR+xlsIDnoQ3t//2wiEHiV3 kbYw59tcKA1f+wjZUKpc9QreBzK5BZ3e8sMGDlCkp5wqjsytJ4LBgx/SA+yXYu1OWJZ1 L/P+vr+LWRzRMHKaIKC1Gl/61fQWosBuDmKBUC67JreYQNp4HgNeywRhLE6gYIP6SXk0 FVZA== Received: by 10.49.94.129 with SMTP id dc1mr2797603qeb.22.1353349701613; Mon, 19 Nov 2012 10:28:21 -0800 (PST) MIME-Version: 1.0 X-BeenThere: rtc-linux@googlegroups.com Received: by 10.49.132.104 with SMTP id ot8ls2191785qeb.63.gmail; Mon, 19 Nov 2012 10:28:21 -0800 (PST) Received: by 10.59.0.73 with SMTP id aw9mr3634320ved.1.1353349701234; Mon, 19 Nov 2012 10:28:21 -0800 (PST) Received: by 10.59.0.73 with SMTP id aw9mr3634319ved.1.1353349701222; Mon, 19 Nov 2012 10:28:21 -0800 (PST) Received: from viridian.itc.virginia.edu (viridian.itc.Virginia.EDU. [128.143.12.139]) by gmr-mx.google.com with ESMTP id es5si817101vdb.2.2012.11.19.10.28.21; Mon, 19 Nov 2012 10:28:21 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of wfp5p@viridian.itc.virginia.edu designates 128.143.12.139 as permitted sender) client-ip=128.143.12.139; Received: by viridian.itc.virginia.edu (Postfix, from userid 1249) id 68357803D2; Mon, 19 Nov 2012 13:27:44 -0500 (EST) From: Bill Pemberton To: gregkh@linuxfoundation.org Cc: Alessandro Zummo , rtc-linux@googlegroups.com Subject: [rtc-linux] [PATCH 367/493] rtc: remove use of __devinitconst Date: Mon, 19 Nov 2012 13:25:16 -0500 Message-Id: <1353349642-3677-367-git-send-email-wfp5p@virginia.edu> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1353349642-3677-1-git-send-email-wfp5p@virginia.edu> References: <1353349642-3677-1-git-send-email-wfp5p@virginia.edu> X-Original-Sender: wfp5p@virginia.edu X-Original-Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of wfp5p@viridian.itc.virginia.edu designates 128.143.12.139 as permitted sender) smtp.mail=wfp5p@viridian.itc.virginia.edu Reply-To: rtc-linux@googlegroups.com Precedence: list Mailing-list: list rtc-linux@googlegroups.com; contact rtc-linux+owners@googlegroups.com List-ID: X-Google-Group-Id: 712029733259 List-Post: , List-Help: , List-Archive: Sender: rtc-linux@googlegroups.com List-Subscribe: , List-Unsubscribe: , CONFIG_HOTPLUG is going away as an option so __devinitconst is no longer needed. Signed-off-by: Bill Pemberton Cc: Alessandro Zummo Cc: rtc-linux@googlegroups.com --- drivers/rtc/rtc-pcf8563.c | 2 +- drivers/rtc/rtc-snvs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c index 98e3a2b..7098ee8 100644 --- a/drivers/rtc/rtc-pcf8563.c +++ b/drivers/rtc/rtc-pcf8563.c @@ -296,7 +296,7 @@ static const struct i2c_device_id pcf8563_id[] = { MODULE_DEVICE_TABLE(i2c, pcf8563_id); #ifdef CONFIG_OF -static const struct of_device_id pcf8563_of_match[] __devinitconst = { +static const struct of_device_id pcf8563_of_match[] = { { .compatible = "nxp,pcf8563" }, {} }; diff --git a/drivers/rtc/rtc-snvs.c b/drivers/rtc/rtc-snvs.c index 7db043f..bc3671a 100644 --- a/drivers/rtc/rtc-snvs.c +++ b/drivers/rtc/rtc-snvs.c @@ -327,7 +327,7 @@ static int snvs_rtc_resume(struct device *dev) static SIMPLE_DEV_PM_OPS(snvs_rtc_pm_ops, snvs_rtc_suspend, snvs_rtc_resume); -static const struct of_device_id __devinitconst snvs_dt_ids[] = { +static const struct of_device_id snvs_dt_ids[] = { { .compatible = "fsl,sec-v4.0-mon-rtc-lp", }, { /* sentinel */ } };