From patchwork Sat Feb 19 12:01:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 574761 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p1JC2BhB013921 for ; Sat, 19 Feb 2011 12:03:24 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754241Ab1BSMDM (ORCPT ); Sat, 19 Feb 2011 07:03:12 -0500 Received: from na3sys009aog113.obsmtp.com ([74.125.149.209]:53267 "EHLO na3sys009aog113.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752283Ab1BSMDM (ORCPT ); Sat, 19 Feb 2011 07:03:12 -0500 Received: from source ([74.125.83.52]) (using TLSv1) by na3sys009aob113.postini.com ([74.125.148.12]) with SMTP ID DSNKTV+xf+UFBImeoJtBx3GGCe9iqhC7h5VG@postini.com; Sat, 19 Feb 2011 04:03:12 PST Received: by gwb11 with SMTP id 11so1883116gwb.39 for ; Sat, 19 Feb 2011 04:03:10 -0800 (PST) Received: by 10.90.115.10 with SMTP id n10mr2514977agc.144.1298116990661; Sat, 19 Feb 2011 04:03:10 -0800 (PST) Received: from localhost (dragon.ti.com [192.94.94.33]) by mx.google.com with ESMTPS id w4sm3911403anw.36.2011.02.19.04.03.07 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 19 Feb 2011 04:03:09 -0800 (PST) From: Nishanth Menon To: linux-omap Cc: Tony Lindgren , Kevin Hilman , Nishanth Menon Subject: [PATCH 08/19] omap3+: sr: make notify independent of class Date: Sat, 19 Feb 2011 17:31:47 +0530 Message-Id: <1298116918-30744-9-git-send-email-nm@ti.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1298116918-30744-1-git-send-email-nm@ti.com> References: <1298116918-30744-1-git-send-email-nm@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Sat, 19 Feb 2011 12:03:24 +0000 (UTC) diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c index eba90a4..6f0c7d0 100644 --- a/arch/arm/mach-omap2/smartreflex.c +++ b/arch/arm/mach-omap2/smartreflex.c @@ -142,7 +142,7 @@ static irqreturn_t sr_interrupt(int irq, void *data) sr_write_reg(sr_info, IRQSTATUS, status); } - if (sr_class->class_type == SR_CLASS2 && sr_class->notify) + if (sr_class->notify) sr_class->notify(sr_info->voltdm, status); return IRQ_HANDLED; @@ -257,9 +257,7 @@ static int sr_late_init(struct omap_sr *sr_info) struct resource *mem; int ret = 0; - if (sr_class->class_type == SR_CLASS2 && - sr_class->notify_flags && sr_info->irq) { - + if (sr_class->notify && sr_class->notify_flags && sr_info->irq) { name = kasprintf(GFP_KERNEL, "sr_%s", sr_info->voltdm->name); if (name == NULL) { ret = -ENOMEM;