From patchwork Wed Jan 22 19:52:31 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paulo Zanoni X-Patchwork-Id: 3525221 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 31A97C02DD for ; Wed, 22 Jan 2014 19:53:58 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 808712011D for ; Wed, 22 Jan 2014 19:53:57 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id C0B0C20179 for ; Wed, 22 Jan 2014 19:53:56 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 18B43105795; Wed, 22 Jan 2014 11:53:52 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-yh0-f47.google.com (mail-yh0-f47.google.com [209.85.213.47]) by gabe.freedesktop.org (Postfix) with ESMTP id A71F61059D9 for ; Wed, 22 Jan 2014 11:53:34 -0800 (PST) Received: by mail-yh0-f47.google.com with SMTP id c41so330195yho.6 for ; Wed, 22 Jan 2014 11:53:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=7YDL3qDdmD5no4yrnE8Qa2G7xmvqIHBqWIujuEnBiNc=; b=MLeP9Iw1TNg4QSJTEfEk7jkuTb6+fp4BYkOEAn/PbEuX2G71+TEZH8U7eQjSQrMkHM 58gcCc9p8dUrbjWWTboM/SbkSKlINJ4XZC85wNYESwtxbfkxwYQKuHBodS6MaHbMbjXy N8/VJIDhYM8qYYQY/588c8uwnpYmpNiNy3gkfFroGBBuxjYITGG1HSbDwKDTkuI+7jzC 5cZHTW7xV5ZtuiEIar8HAG1Xd6WLBkFWQUvg0kBEpSbA919QDSqDl4o6HCAZFMHKhXql DWHVU/L5+AnZK8qEAOiVjFKef1i3pjW/vVX4M0w+blgPQEZOgjjHLDWX84IZHL0qWXAq u1zA== X-Received: by 10.236.123.98 with SMTP id u62mr319632yhh.141.1390420413946; Wed, 22 Jan 2014 11:53:33 -0800 (PST) Received: from localhost.localdomain ([187.112.59.220]) by mx.google.com with ESMTPSA id f78sm27457275yhp.12.2014.01.22.11.53.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 22 Jan 2014 11:53:33 -0800 (PST) From: Paulo Zanoni To: intel-gfx@lists.freedesktop.org Date: Wed, 22 Jan 2014 17:52:31 -0200 Message-Id: <1390420357-23669-14-git-send-email-przanoni@gmail.com> X-Mailer: git-send-email 1.8.4.2 In-Reply-To: <1390420357-23669-1-git-send-email-przanoni@gmail.com> References: <1390420357-23669-1-git-send-email-przanoni@gmail.com> Cc: Paulo Zanoni Subject: [Intel-gfx] [PATCH 13/19] drm/i915: call ibx_irq_uninstall from gen8_irq_uninstall X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Paulo Zanoni After all, we call ibx_irq_preinstall from gen8_irq_preinstall. Signed-off-by: Paulo Zanoni --- drivers/gpu/drm/i915/i915_irq.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index 128dbbc..60f4c46 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c @@ -3027,6 +3027,8 @@ static void gen8_irq_uninstall(struct drm_device *dev) GEN5_IRQ_RESET(GEN8_PCU_); POSTING_READ(GEN8_PCU_IIR); + + ibx_irq_uninstall(dev); } static void valleyview_irq_uninstall(struct drm_device *dev)