From patchwork Wed Aug 1 08:57:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Tettamanti X-Patchwork-Id: 1263461 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork2.kernel.org (Postfix) with ESMTP id 8EB31DF215 for ; Wed, 1 Aug 2012 09:28:16 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 428479E85C for ; Wed, 1 Aug 2012 02:28:16 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-bk0-f49.google.com (mail-bk0-f49.google.com [209.85.214.49]) by gabe.freedesktop.org (Postfix) with ESMTP id DA8F59EF50 for ; Wed, 1 Aug 2012 01:57:47 -0700 (PDT) Received: by bkcji2 with SMTP id ji2so3829781bkc.36 for ; Wed, 01 Aug 2012 01:57:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=8emllT1iyWecg+k8OEHrzuarx401ZmM+R2Gbu9CTtM4=; b=02TZW6/56Fe0/9Vxs5rMWpEiCgldF6D83eoEEXRf1JhTiU25h3qFHq9YCGSMPvCHA8 urkf3t1NlkoE36fFJj7Aw9uWTMP1/m6d4C/jp3fittkXK4QAXevgd8p++3Lj/3wmC19g s/vSqoNjca1Qqqt0VbQEIMqRrDQo9GlTVzh5nziUTt3SP5obIZrCF+mUVDkuvbY2payo w3yjBZo8+1id+knI4951T0eu2jmuHMdRXGbvrWwc4lo6WauoUddqbynkJU6KpnKHwL2p tGjhPF9vG3046MGQMVvZqgBPXdxbWhwUFsQyv3EgOp6mWJfYigCP5JHZlmKltUxHG45I 3sSg== Received: by 10.204.10.70 with SMTP id o6mr6506811bko.31.1343811466690; Wed, 01 Aug 2012 01:57:46 -0700 (PDT) Received: from growl (seco.como.polimi.it. [131.175.57.192]) by mx.google.com with ESMTPS id u8sm1198790bks.0.2012.08.01.01.57.45 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 01 Aug 2012 01:57:45 -0700 (PDT) Date: Wed, 1 Aug 2012 10:57:39 +0200 From: Luca Tettamanti To: Alex Deucher Subject: Re: [PATCH] drm/radeon: add new AMD ACPI header and update relevant code Message-ID: <20120801085739.GA7793@growl> References: <20120728145626.GA6304@growl> <20120729130644.GA12378@growl> <20120730202449.GA5600@growl> <20120731200520.GA5425@growl> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Alex Deucher , joeyli , dri-devel@lists.freedesktop.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org On Tue, Jul 31, 2012 at 05:33:16PM -0400, Alex Deucher wrote: > Patches look good. I picked them up and combined them with may > patches plus a few other small fixes. They are available here: > http://cgit.freedesktop.org/~agd5f/linux/log/?h=acpi_patches > Let me know what you think. Looks ok, I lost one fix along the road though, I'm attaching the patch. Luca From 0f71d5b56b9e5eee3194b5b926767511281ea0a6 Mon Sep 17 00:00:00 2001 From: Luca Tettamanti Date: Wed, 1 Aug 2012 10:53:19 +0200 Subject: [PATCH] drm/radeon: fix, enable notifications with device specific command code Signed-off-by: Luca Tettamanti --- drivers/gpu/drm/radeon/radeon_acpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/drivers/gpu/drm/radeon/radeon_acpi.c index 14ae8aa..a812b9a 100644 --- a/drivers/gpu/drm/radeon/radeon_acpi.c +++ b/drivers/gpu/drm/radeon/radeon_acpi.c @@ -214,6 +214,7 @@ static int radeon_atif_get_notification_params(acpi_handle handle, err = -EINVAL; goto out; } + n->enabled = true; n->command_code = params.command_code; }