From patchwork Sat Jun 20 16:09:03 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alessandro Zummo X-Patchwork-Id: 28936 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from mail-yx0-f148.google.com (mail-yx0-f148.google.com [209.85.210.148]) by bilbo.ozlabs.org (Postfix) with ESMTP id 1AAA3B7232 for ; Sun, 21 Jun 2009 02:09:09 +1000 (EST) Received: by mail-yx0-f148.google.com with SMTP id 12so1403887yxe.29 for ; Sat, 20 Jun 2009 09:09:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlegroups.com; s=beta; h=domainkey-signature:received:received:x-sender:x-apparently-to :received:received:received-spf:authentication-results:received :received:from:subject:to:cc:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:reply-to:sender:precedence :x-google-loop:mailing-list:list-id:list-post:list-help :list-unsubscribe:x-beenthere-env:x-beenthere; bh=o3ZciMa2MYu4e0npKpYbOk0zJvdl0hiZHTUh5J+zL1M=; b=fc1qDdWcjJeoPB6JxFcS8DPeqT/N046wmVyKTHnVDAtLSM//33pv9tHPVxfQjEVB6a 6BPtCl2r83kaPUys7GuyknQB8nOK9PlIiVctMq1Io/Gp52lBGZuj6MuHiVmJmMP8Hqd3 eRPlCMZLzynqXWnvOUNpTr1EoSMhISoetI+ng= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlegroups.com; s=beta; h=x-sender:x-apparently-to:received-spf:authentication-results:from :subject:to:cc:date:message-id:in-reply-to:references:user-agent :mime-version:content-type:reply-to:sender:precedence:x-google-loop :mailing-list:list-id:list-post:list-help:list-unsubscribe :x-beenthere-env:x-beenthere; b=OW+Va0W5ffUVMoDq2vcbn5y5DMx6v9ODiNYBgaI+tvLPURDtYOIqaXdSn/rYgwytUj Eizy2UkwAkvGNcnIlGmsd8ZRbZkqijaLLhmdSUtKgk64ngjnloJNhjflZRppMR35VXjP s16YpCiFs7N0Yek6fcGEdsUy7JEz/VLw4VXAw= Received: by 10.100.33.15 with SMTP id g15mr669206ang.14.1245514144867; Sat, 20 Jun 2009 09:09:04 -0700 (PDT) Received: by 10.177.113.42 with SMTP id q42gr2501yqm.0; Sat, 20 Jun 2009 09:09:04 -0700 (PDT) X-Sender: a.zummo@towertech.it X-Apparently-To: rtc-linux@googlegroups.com Received: by 10.223.113.198 with SMTP id b6mr81477faq.25.1245514144035; Sat, 20 Jun 2009 09:09:04 -0700 (PDT) Received: from mx0.towertech.it (mx0.towertech.it [213.215.222.73]) by gmr-mx.google.com with SMTP id 13si441468bwz.7.2009.06.20.09.09.03; Sat, 20 Jun 2009 09:09:04 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of a.zummo@towertech.it designates 213.215.222.73 as permitted sender) client-ip=213.215.222.73; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of a.zummo@towertech.it designates 213.215.222.73 as permitted sender) smtp.mail=a.zummo@towertech.it Received: (qmail 4129 invoked from network); 20 Jun 2009 18:09:03 +0200 Received: from unknown (HELO i1501.lan.towertech.it) (93.39.57.60) by mx0.towertech.it with SMTP; 20 Jun 2009 18:09:03 +0200 From: Alessandro Zummo Subject: [rtc-linux] [PATCH 5/9] rtc-bfin: do not share RTC IRQ To: akpm@linux-foundation.org Cc: rtc-linux@googlegroups.com, Michael Hennerich , Mike Frysinger , Alessandro Zummo Date: Sat, 20 Jun 2009 18:09:03 +0200 Message-ID: <20090620160902.6953.89778.stgit@i1501.lan.towertech.it> In-Reply-To: <20090620160839.6953.41960.stgit@i1501.lan.towertech.it> References: <20090620160839.6953.41960.stgit@i1501.lan.towertech.it> User-Agent: StGIT/0.14.2 Mime-Version: 1.0 Reply-To: rtc-linux@googlegroups.com Sender: rtc-linux@googlegroups.com Precedence: bulk X-Google-Loop: groups Mailing-List: list rtc-linux@googlegroups.com; contact rtc-linux+owner@googlegroups.com List-Id: List-Post: List-Help: List-Unsubscribe: , X-BeenThere-Env: rtc-linux@googlegroups.com X-BeenThere: rtc-linux@googlegroups.com From: Michael Hennerich The Blackfin RTC IRQ is an internal interrupt, so it makes no sense to have it be shared. Signed-off-by: Michael Hennerich Signed-off-by: Mike Frysinger Signed-off-by: Alessandro Zummo --- drivers/rtc/rtc-bfin.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to "rtc-linux". Membership options at http://groups.google.com/group/rtc-linux . Please read http://groups.google.com/group/rtc-linux/web/checklist before submitting a driver. -~----------~----~----~----~------~----~------~--~--- diff --git a/drivers/rtc/rtc-bfin.c b/drivers/rtc/rtc-bfin.c index aafd3e6..abad9f6 100644 --- a/drivers/rtc/rtc-bfin.c +++ b/drivers/rtc/rtc-bfin.c @@ -375,7 +375,7 @@ static int __devinit bfin_rtc_probe(struct platform_device *pdev) device_init_wakeup(dev, 1); /* Grab the IRQ and init the hardware */ - ret = request_irq(IRQ_RTC, bfin_rtc_interrupt, IRQF_SHARED, pdev->name, dev); + ret = request_irq(IRQ_RTC, bfin_rtc_interrupt, 0, pdev->name, dev); if (unlikely(ret)) goto err; /* sometimes the bootloader touched things, but the write complete was not