From patchwork Sun Sep 27 21:13:04 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Helge Deller X-Patchwork-Id: 50348 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8RLDAuU015081 for ; Sun, 27 Sep 2009 21:13:10 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750890AbZI0VNF (ORCPT ); Sun, 27 Sep 2009 17:13:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751421AbZI0VNF (ORCPT ); Sun, 27 Sep 2009 17:13:05 -0400 Received: from mail.gmx.net ([213.165.64.20]:58121 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1750890AbZI0VND (ORCPT ); Sun, 27 Sep 2009 17:13:03 -0400 Received: (qmail invoked by alias); 27 Sep 2009 21:13:06 -0000 Received: from p4FDB3698.dip0.t-ipconnect.de (EHLO halden.box) [79.219.54.152] by mail.gmx.net (mp002) with SMTP; 27 Sep 2009 23:13:06 +0200 X-Authenticated: #1045983 X-Provags-ID: V01U2FsdGVkX18zrtsnKf4zkqPFaWq2zecnl0zXJpxGDzqlk98EZK b4gjMZhck/7q0P Message-ID: <4ABFD560.9080302@gmx.de> Date: Sun, 27 Sep 2009 23:13:04 +0200 From: Helge Deller User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.1) Gecko/20090814 Fedora/3.0-2.6.b3.fc11 Thunderbird/3.0b3 MIME-Version: 1.0 To: David Woodhouse , Kyle McMartin , linux-parisc , David Airlie Subject: agp: parisc-agp.c - use correct page_mask function X-Y-GMX-Trusted: 0 X-FuHaFi: 0.58 Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org This commit: Commit 2a4ceb6d3e6a566cb4a9dc8f974177f031d27cd7 Author: David Woodhouse Date: Mon Jul 27 10:27:29 2009 +0100 agp: Switch mask_memory() method to take address argument again, not page broke the parisc AGP driver (again). This patch fixes it. Signed-off-by: Helge Deller Acked-by: Kyle McMartin --- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/char/agp/parisc-agp.c b/drivers/char/agp/parisc-agp.c index 60ab751..1c12921 100644 --- a/drivers/char/agp/parisc-agp.c +++ b/drivers/char/agp/parisc-agp.c @@ -217,7 +217,7 @@ static const struct agp_bridge_driver parisc_agp_driver = { .configure = parisc_agp_configure, .fetch_size = parisc_agp_fetch_size, .tlb_flush = parisc_agp_tlbflush, - .mask_memory = parisc_agp_page_mask_memory, + .mask_memory = parisc_agp_mask_memory, .masks = parisc_agp_masks, .agp_enable = parisc_agp_enable, .cache_flush = global_cache_flush,